Fixed typo from previous commit

This commit is contained in:
Maruno17
2020-09-24 22:32:38 +01:00
parent 9b9bd9caab
commit 0a69a79932

View File

@@ -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