From e8834ceca9a141e1cd169c65c5b184af3453500a Mon Sep 17 00:00:00 2001 From: DepressedTWM Date: Tue, 23 Jun 2026 15:17:12 +0400 Subject: [PATCH] meow --- binding-mri/module_rpg1.rb | 2 -- scripts/Data_FastTravel.rb | 2 -- scripts/Scene_Map.rb | 2 +- scripts/Scene_Title.rb | 2 +- scripts/Sprite_Character.rb | 2 -- 5 files changed, 2 insertions(+), 8 deletions(-) diff --git a/binding-mri/module_rpg1.rb b/binding-mri/module_rpg1.rb index 7ab0ac2..889b9db 100644 --- a/binding-mri/module_rpg1.rb +++ b/binding-mri/module_rpg1.rb @@ -1441,7 +1441,6 @@ module RPG @battleback_name = "" @battler_name = "" @battler_hue = 0 - @edit_map_id = 1 end attr_accessor :magic_number attr_accessor :party_members @@ -1476,7 +1475,6 @@ module RPG attr_accessor :battleback_name attr_accessor :battler_name attr_accessor :battler_hue - attr_accessor :edit_map_id end class AudioFile diff --git a/scripts/Data_FastTravel.rb b/scripts/Data_FastTravel.rb index 3db503f..aa91e99 100644 --- a/scripts/Data_FastTravel.rb +++ b/scripts/Data_FastTravel.rb @@ -7,7 +7,6 @@ class FastTravel @name = name @maps = maps @locations = locations; - RPG::Mod.exec_hooks("hooks/FastTravel/init", binding) end end @@ -29,7 +28,6 @@ class FastTravel @next_right = next_right @next_bottom = next_bottom @next_left = next_left - RPG::Mod.exec_hooks("hooks/ZoneLocations/init", binding) end end diff --git a/scripts/Scene_Map.rb b/scripts/Scene_Map.rb index bf251e3..d5bd680 100644 --- a/scripts/Scene_Map.rb +++ b/scripts/Scene_Map.rb @@ -305,7 +305,7 @@ class Scene_Map end if Settings[:debug] and Input.press?(Input::F5) and $game_temp.player_transferring = true - $game_temp.player_new_map_id = $data_system.start_map_id + $game_temp.player_new_map_id = 1 $game_temp.player_new_x = $data_system.start_x $game_temp.player_new_y = $data_system.start_y end diff --git a/scripts/Scene_Title.rb b/scripts/Scene_Title.rb index 87191ab..835b36b 100644 --- a/scripts/Scene_Title.rb +++ b/scripts/Scene_Title.rb @@ -257,7 +257,7 @@ class Scene_Title # Set up initial party $game_party.setup_starting_members # Set up initial map position - $game_map.setup($data_system.start_map_id) + $game_map.setup(1) # Move player to initial position $game_player.moveto($data_system.start_x, $data_system.start_y) # Refresh player diff --git a/scripts/Sprite_Character.rb b/scripts/Sprite_Character.rb index 8a95ca0..37ae109 100644 --- a/scripts/Sprite_Character.rb +++ b/scripts/Sprite_Character.rb @@ -26,8 +26,6 @@ class Sprite_Character @text_sprite.bitmap = Bitmap.new(Graphics.width, 24) @text_sprite.bitmap.font.size = 12 @character = character - - RPG::Mod.exec_hooks("hooks/Sprite_Character/init", binding) update end #--------------------------------------------------------------------------