Make the game remember if running was toggled

This commit is contained in:
JappaWakka 2025-01-28 11:55:52 +01:00
parent 84a925b120
commit b85e6162d9
1 changed files with 3 additions and 0 deletions

View File

@ -751,6 +751,8 @@
ShowBattleAnimations = CInt(Value)
Case "runmode"
RunMode = CBool(Value)
Case "runtoggled"
RunToggled = CBool(Value)
Case "boxamount"
BoxAmount = CInt(Value)
Case "lastrestplace"
@ -1270,6 +1272,7 @@
"Location|" & Screen.Level.MapName & Environment.NewLine &
"BattleAnimations|" & ShowBattleAnimations.ToString() & Environment.NewLine &
"RunMode|" & RunMode.ToNumberString() & Environment.NewLine &
"RunToggled|" & RunToggled.ToNumberString() & Environment.NewLine &
"BoxAmount|" & BoxAmount.ToString() & Environment.NewLine &
"LastRestPlace|" & LastRestPlace & Environment.NewLine &
"LastRestPlacePosition|" & LastRestPlacePosition & Environment.NewLine &