diff --git a/config.json b/config.json index 907a325c..d49578cc 100644 --- a/config.json +++ b/config.json @@ -39,7 +39,7 @@ "Custom_Assetbundle.9f95fd", "Custom_Assetbundle.35b95f", "Custom_Assetbundle.5af8f2", - "AgendaArea.9f334f", + "MythosArea.9f334f", "Custom_Tile.91dd9b", "Custom_Assetbundle.5706ae", "Custom_Tile.6161b4", diff --git a/objects/MythosArea.9f334f.json b/objects/MythosArea.9f334f.json index 932b0cf3..f2bb2a21 100644 --- a/objects/MythosArea.9f334f.json +++ b/objects/MythosArea.9f334f.json @@ -58,7 +58,7 @@ "HideWhenFaceDown": false, "IgnoreFoW": false, "LayoutGroupSortIndex": 0, - "Locked": false, + "Locked": true, "LuaScript": "require(\"core/MythosArea\")", "LuaScriptState": "[]", "MeasureMovement": false, @@ -69,7 +69,7 @@ "Tooltip": false, "Transform": { "posX": -1.309, - "posY": 1.477, + "posY": 1.483, "posZ": 0.034, "rotX": 0, "rotY": 270, diff --git a/src/core/PlayArea.ttslua b/src/core/PlayArea.ttslua index 3ee7170b..5539fdbf 100644 --- a/src/core/PlayArea.ttslua +++ b/src/core/PlayArea.ttslua @@ -32,7 +32,6 @@ local currentScenario --------------------------------------------------------- function onSave() - -- return JSON.encode({}) return JSON.encode({ spawnedLocs = spawnedLocationGUIDs, currentScenario = currentScenario diff --git a/src/core/PlayAreaApi.ttslua b/src/core/PlayAreaApi.ttslua index ab6a6a4a..49e54769 100644 --- a/src/core/PlayAreaApi.ttslua +++ b/src/core/PlayAreaApi.ttslua @@ -38,7 +38,6 @@ do -- Event to be called when the current scenario has changed. ---@param scenarioName Name of the new scenario PlayAreaApi.onScenarioChanged = function(scenarioName) - log("In API") getObjectFromGUID(PLAY_AREA_GUID).call("onScenarioChanged", scenarioName) end