From a0c9e2eefff22c01a6330b849df66427ab217d7b Mon Sep 17 00:00:00 2001 From: Michael Shirt Date: Mon, 10 Oct 2016 12:44:33 -0600 Subject: [PATCH] Updating niko reflection script Sink is no longer solid so the positioning of niko's reflection is changed to "reflect" this. --- scripts/Script.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/Script.rb b/scripts/Script.rb index da23878..f2846ba 100644 --- a/scripts/Script.rb +++ b/scripts/Script.rb @@ -52,15 +52,15 @@ module Script def self.niko_reflection_update for event in $game_map.events.values if event.name == "niko reflection" - event.real_y = 14*128 - ($game_player.real_y - 14*128) + event.real_y = 27*128/2 - ($game_player.real_y - 27*128/2) event.real_x = $game_player.real_x - event.y = 14 - ($game_player.y - 14) + event.y = 14 - (($game_player.y - 13)) event.x = $game_player.x - if event.y > 13 - event.y = 13 + if event.y > 14 + event.y = 14 end - if event.real_y > 13*128 - event.real_y = 13*128 + if event.real_y > 14*128 + event.real_y = 14*128 end event.direction = $game_player.direction event.pattern = $game_player.pattern