mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
minor changes to sun room fix
This commit is contained in:
parent
91e25907eb
commit
941b611ba0
1 changed files with 3 additions and 1 deletions
|
|
@ -126,9 +126,11 @@ def puzzle_check(puzzle)
|
|||
end
|
||||
|
||||
def lightbulb_room_fix
|
||||
if ($game_player.x < 5) || ($game_player.x > 15) || ($game_player.y < 2) || ($game_player.y > 13)
|
||||
if (($game_player.x < 5) || ($game_player.x > 15) || ($game_player.y < 2) || ($game_player.y > 13))
|
||||
$game_player.x = 10
|
||||
$game_player.y = 13
|
||||
$game_player.real_x = 10 * 4 * 32
|
||||
$game_player.real_y = 13 * 4 * 32
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue