The player now dismounts the Bicycle after various map transfers

This commit is contained in:
Maruno17
2022-08-07 16:07:37 +01:00
parent cca414a826
commit 6542d505a6
5 changed files with 8 additions and 0 deletions

View File

@@ -234,6 +234,7 @@ class BattleChallengeData
$game_temp.player_new_x = @start[1]
$game_temp.player_new_y = @start[2]
$game_temp.player_new_direction = 8
pbDismountBike
$scene.transfer_player
end
end

View File

@@ -33,6 +33,7 @@ class SafariState
$game_temp.player_new_x = @start[1]
$game_temp.player_new_y = @start[2]
$game_temp.player_new_direction = 2
pbDismountBike
$scene.transfer_player
}
end

View File

@@ -164,6 +164,7 @@ class BugContestState
$game_temp.player_new_x = @start[1]
$game_temp.player_new_y = @start[2]
$game_temp.player_new_direction = @start[3]
pbDismountBike
$scene.transfer_player
$game_map.need_refresh = true # in case player moves to the same map
}