Fixed bug where construct didn't return anything

Forgot to add Return to ReturnBoolean() for <Level.LoadOffsetMaps>
This commit is contained in:
JappaWakka 2024-12-16 16:32:09 +01:00
parent a70c4e39dd
commit 13a47b5276
1 changed files with 2 additions and 2 deletions

View File

@ -29,9 +29,9 @@
Return int(Screen.Level.EnvironmentType)
Case "loadoffsetmaps"
If Core.GameOptions.LoadOffsetMaps > 0 Then
ReturnBoolean(True)
Return ReturnBoolean(True)
Else
ReturnBoolean(False)
Return ReturnBoolean(False)
End If
End Select