From 0a69a79932e4080bdec86070931ff5261f33bdfd Mon Sep 17 00:00:00 2001 From: Maruno17 Date: Thu, 24 Sep 2020 22:32:38 +0100 Subject: [PATCH] Fixed typo from previous commit --- Data/Scripts/003_Game classes/005_Game_Character.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Data/Scripts/003_Game classes/005_Game_Character.rb b/Data/Scripts/003_Game classes/005_Game_Character.rb index f00a89898..2854e897c 100644 --- a/Data/Scripts/003_Game classes/005_Game_Character.rb +++ b/Data/Scripts/003_Game classes/005_Game_Character.rb @@ -806,7 +806,7 @@ class Game_Character def update_move # Move the character (the 0.1 catches rounding errors) - distance = (jumping?) : jump_speed_real : move_speed_real + distance = (jumping?) ? jump_speed_real : move_speed_real dest_x = @x * Game_Map::REAL_RES_X dest_y = @y * Game_Map::REAL_RES_Y if @real_x < dest_x