From 3cb8091b11019529677ebd58f835d8c41219a344 Mon Sep 17 00:00:00 2001 From: Issac332 <119879937+Issac8658@users.noreply.github.com> Date: Sat, 11 Jul 2026 19:34:08 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=A5=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/Scene_Map.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/Scene_Map.rb b/scripts/Scene_Map.rb index 05fa1ed..71229e1 100644 --- a/scripts/Scene_Map.rb +++ b/scripts/Scene_Map.rb @@ -392,7 +392,8 @@ class Scene_Map @spriteset = Spriteset_Map.new # Update map (run parallel process event) $game_map.update - Input.set_led(GamepadMapColors::COLORS[$game_map.map_id].red, GamepadMapColors::COLORS[$game_map.map_id].green, GamepadMapColors::COLORS[$game_map.map_id].blue) + color = GamepadMapColors::COLORS[$game_map.map_id] || GamepadMapColors::SUN + Input.set_led(color.red, color.green, color.blue) @spriteset.update # Run automatic change for BGM and BGS set on the map $game_map.autoplay