From ae51f718ce1c8e3aeffedaaf36029b636f72daef Mon Sep 17 00:00:00 2001 From: Issac332 <119879937+Issac8658@users.noreply.github.com> Date: Sun, 24 May 2026 19:15:53 +0300 Subject: [PATCH] fast travel bottom and right arrows fix --- scripts/FastTravel.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/FastTravel.rb b/scripts/FastTravel.rb index b79c733..52cfadb 100644 --- a/scripts/FastTravel.rb +++ b/scripts/FastTravel.rb @@ -122,9 +122,9 @@ class FastTravel @arrow_top.x = @arrow_bottom.x = @niko_icon.x + 4 * @scale_multiplier @arrow_top.y = @niko_icon.y - (12 + @arrows_offset) * @scale_multiplier - @arrow_bottom.y = @niko_icon.y + @niko_icon.bitmap.height + (6 + @arrows_offset) * @scale_multiplier + @arrow_bottom.y = @niko_icon.y + @niko_icon.bitmap.height * @scale_multiplier / 3 + (6 + @arrows_offset) * @scale_multiplier @arrow_left.x = @niko_icon.x - (8 + @arrows_offset) * @scale_multiplier - @arrow_right.x = @niko_icon.x + @niko_icon.bitmap.width + (7 + @arrows_offset) * @scale_multiplier + @arrow_right.x = @niko_icon.x + @niko_icon.bitmap.width * @scale_multiplier / 3 + (7 + @arrows_offset) * @scale_multiplier end #Not WME