From 9bd31300ad0125d735e550a1df3e51b4213ce410 Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Tue, 6 Sep 2022 22:59:36 +0100 Subject: [PATCH] AI-only battles shouldn't be usable before loading a game --- Data/Scripts/999_Main/002_debug battle test.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Data/Scripts/999_Main/002_debug battle test.rb b/Data/Scripts/999_Main/002_debug battle test.rb index 869d2fee6..cb24e578f 100644 --- a/Data/Scripts/999_Main/002_debug battle test.rb +++ b/Data/Scripts/999_Main/002_debug battle test.rb @@ -100,6 +100,7 @@ MenuHandlers.add(:debug_menu, :test_auto_battle, { "name" => _INTL("Test Auto Battle"), "parent" => :main, "description" => _INTL("Runs an AI-controlled battle with no visuals."), + "always_show" => false, "effect" => proc { debug_test_auto_battle } @@ -109,6 +110,7 @@ MenuHandlers.add(:debug_menu, :test_auto_battle_logging, { "name" => _INTL("Test Auto Battle with Logging"), "parent" => :main, "description" => _INTL("Runs an AI-controlled battle with no visuals. Logs messages."), + "always_show" => false, "effect" => proc { debug_test_auto_battle(true) }