From 79e70e8821a3e7c7a1ab1d407e1622d7292a4de0 Mon Sep 17 00:00:00 2001 From: mshirt Date: Fri, 23 Dec 2016 14:07:11 -0600 Subject: [PATCH] Fixed being able to open both menus at once You could open both inventory and menu at once if you were walking. But now you can't. --- scripts/Scene_Map.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/Scene_Map.rb b/scripts/Scene_Map.rb index 5f91e55..4a52775 100644 --- a/scripts/Scene_Map.rb +++ b/scripts/Scene_Map.rb @@ -250,7 +250,7 @@ class Scene_Map # Process menu opening unless $game_system.map_interpreter.running? || $game_system.menu_disabled || - @fast_travel.visible + @fast_travel.visible || $game_temp.menu_calling == true || $game_temp.item_menu_calling == true if !@menu.visible && Input.trigger?(Input::MENU) $game_temp.menu_calling = true $game_temp.menu_beep = true