Fixed bug where construct didn't return anything
Forgot to add Return to ReturnBoolean() for <Level.LoadOffsetMaps>
This commit is contained in:
parent
a70c4e39dd
commit
13a47b5276
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue