diff --git a/Data/Scripts/004_Game classes/009_Game_Player.rb b/Data/Scripts/004_Game classes/009_Game_Player.rb index 77b72ce25..8bb2be923 100644 --- a/Data/Scripts/004_Game classes/009_Game_Player.rb +++ b/Data/Scripts/004_Game classes/009_Game_Player.rb @@ -578,13 +578,13 @@ end def pbUpdateVehicle if $PokemonGlobal&.diving - $game_player.set_movement_type(:diving) + $game_player.set_movement_type(:diving_stopped) elsif $PokemonGlobal&.surfing - $game_player.set_movement_type(:surfing) + $game_player.set_movement_type(:surfing_stopped) elsif $PokemonGlobal&.bicycle - $game_player.set_movement_type(:cycling) + $game_player.set_movement_type(:cycling_stopped) else - $game_player.set_movement_type(:walking) + $game_player.set_movement_type(:walking_stopped) end end diff --git a/Data/Scripts/012_Overworld/005_Overworld_Fishing.rb b/Data/Scripts/012_Overworld/005_Overworld_Fishing.rb index 38c9ed214..189a4b250 100644 --- a/Data/Scripts/012_Overworld/005_Overworld_Fishing.rb +++ b/Data/Scripts/012_Overworld/005_Overworld_Fishing.rb @@ -29,7 +29,7 @@ def pbFishingEnd end end yield if block_given? - $game_player.set_movement_type(($PokemonGlobal.surfing) ? :surfing : :walking) + $game_player.set_movement_type(($PokemonGlobal.surfing) ? :surfing_stopped : :walking_stopped) $game_player.lock_pattern = false $game_player.straighten $PokemonGlobal.fishing = false