mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
Adding a quickfix for the sunroom bug
This commit is contained in:
parent
ee0c895a1e
commit
91e25907eb
1 changed files with 7 additions and 0 deletions
|
|
@ -125,6 +125,13 @@ def puzzle_check(puzzle)
|
||||||
Script.tmp_s1 = result
|
Script.tmp_s1 = result
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def lightbulb_room_fix
|
||||||
|
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
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
def pixel_puzzle_niko_correct(puzzle)
|
def pixel_puzzle_niko_correct(puzzle)
|
||||||
niko_x = $game_variables[7]
|
niko_x = $game_variables[7]
|
||||||
niko_y = $game_variables[8]
|
niko_y = $game_variables[8]
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue