Sandbox savegames should be able to access the PokéGear at any time now.

This commit is contained in:
JappaWakka 2021-09-27 23:17:53 +02:00
parent c657207a69
commit b1c4916e14
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ Public Class OverworldScreen
'Open the PokégearScreen:
If KeyBoardHandler.KeyPressed(KeyBindings.SpecialKey) = True Or ControllerHandler.ButtonPressed(Buttons.Y) = True Then
If Core.Player.HasPokegear = True Or GameController.IS_DEBUG_ACTIVE = True Then
If Core.Player.HasPokegear = True Or GameController.IS_DEBUG_ACTIVE = True Or Core.Player.SandBoxMode = True Then
If Screen.Camera.IsMoving() = False And ActionScript.IsReady = True Then
Core.SetScreen(New GameJolt.PokegearScreen(Me, GameJolt.PokegearScreen.EntryModes.MainMenu, {}))
End If