| summaryrefslogtreecommitdiff | 
diff options
| author | nsensfel <SpamShield0@noot-noot.org> | 2020-01-15 17:38:44 +0100 | 
|---|---|---|
| committer | nsensfel <SpamShield0@noot-noot.org> | 2020-01-15 17:38:44 +0100 | 
| commit | 12f659fbee61be12c02167773f461b7e3fb8875b (patch) | |
| tree | 0b1367d6573cf81953e0dd0e3ab453e48a444c38 /src/map-editor | |
| parent | 959e82eafece7d355b2ffdc2a6fec55afd6f35db (diff) | |
...
Diffstat (limited to 'src/map-editor')
| -rw-r--r-- | src/map-editor/src/Comm/LoadMap.elm | 2 | ||||
| -rw-r--r-- | src/map-editor/src/Struct/Model.elm | 2 | ||||
| -rw-r--r-- | src/map-editor/src/Update/HandleServerReply.elm | 2 | 
3 files changed, 3 insertions, 3 deletions
| diff --git a/src/map-editor/src/Comm/LoadMap.elm b/src/map-editor/src/Comm/LoadMap.elm index 7eb92c8..e44612b 100644 --- a/src/map-editor/src/Comm/LoadMap.elm +++ b/src/map-editor/src/Comm/LoadMap.elm @@ -49,5 +49,5 @@ try model =     (Comm.Send.maybe_send        model        Constants.IO.map_loading_handler -      maybe_encod +      maybe_encode     ) diff --git a/src/map-editor/src/Struct/Model.elm b/src/map-editor/src/Struct/Model.elm index 141a9c2..f0a8708 100644 --- a/src/map-editor/src/Struct/Model.elm +++ b/src/map-editor/src/Struct/Model.elm @@ -62,7 +62,7 @@ type alias Type =  new : Struct.Flags.Type -> Type  new flags =     let -      maybe_map_id = (Struct.Flags.maybe_get_param "id" flags) +      maybe_map_id = (Struct.Flags.maybe_get_parameter "id" flags)        model =           {              flags = flags, diff --git a/src/map-editor/src/Update/HandleServerReply.elm b/src/map-editor/src/Update/HandleServerReply.elm index 3caf506..433d1a9 100644 --- a/src/map-editor/src/Update/HandleServerReply.elm +++ b/src/map-editor/src/Update/HandleServerReply.elm @@ -49,7 +49,7 @@ disconnected current_state =                    (Url.percentEncode                       (                          "/map-editor/?" -                        ++ (Struct.Flags.get_params_as_url model.flags) +                        ++ (Struct.Flags.get_parameters_as_url model.flags)                       )                    )                 ) | 


