Moved title splash call from PlayArea to MythosArea. updated comment for

options
This commit is contained in:
Pokachi 2023-01-01 01:57:41 -08:00
parent d8bdb9fdf8
commit 7a071d30f4
3 changed files with 2 additions and 2 deletions

View File

@ -818,7 +818,7 @@ function applyOptionPanelChange(id, state)
-- update master clue counter
getObjectFromGUID("4a3aa4").setVar("useClickableCounters", state)
-- option: Clickable clue counters
-- option: Show Title on placing scenarios
elseif id == "showTitleSplash" then
optionPanel[id] = state

View File

@ -55,6 +55,7 @@ function resetTokensIfInDeckZone(container, object)
end
function fireScenarioChangedEvent()
Global.call('titleSplash', {scenarioName = currentScenario})
playArea.onScenarioChanged(currentScenario)
end

View File

@ -130,5 +130,4 @@ end
function onScenarioChanged(scenarioName)
currentScenario = scenarioName
Global.call('titleSplash', {scenarioName = scenarioName})
end