summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/map-editor')
-rw-r--r--src/map-editor/src/Comm/LoadMap.elm2
-rw-r--r--src/map-editor/src/Struct/Model.elm2
-rw-r--r--src/map-editor/src/Update/HandleServerReply.elm2
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)
)
)
)