Made Player Transfer event command not cancel surfing/diving, so pbTransferSurfing and pbTransferUnderwater are deprecated.

This commit is contained in:
Maruno17
2021-11-21 19:10:16 +00:00
parent ddb95a8bb6
commit c8b574ed7c
6 changed files with 41 additions and 7 deletions

View File

@@ -576,9 +576,9 @@ def pbUpdateVehicle
end
end
def pbCancelVehicles(destination=nil)
$PokemonGlobal.surfing = false
$PokemonGlobal.diving = false
def pbCancelVehicles(destination = nil, cancel_swimming = true)
$PokemonGlobal.surfing = false if cancel_swimming
$PokemonGlobal.diving = false if cancel_swimming
$PokemonGlobal.bicycle = false if !destination || !pbCanUseBike?(destination)
pbUpdateVehicle
end