mirror of
https://github.com/infinitefusion/infinitefusion-e18.git
synced 2025-12-08 05:34:58 +00:00
Fixed typo from previous commit
This commit is contained in:
@@ -806,7 +806,7 @@ class Game_Character
|
|||||||
|
|
||||||
def update_move
|
def update_move
|
||||||
# Move the character (the 0.1 catches rounding errors)
|
# 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_x = @x * Game_Map::REAL_RES_X
|
||||||
dest_y = @y * Game_Map::REAL_RES_Y
|
dest_y = @y * Game_Map::REAL_RES_Y
|
||||||
if @real_x < dest_x
|
if @real_x < dest_x
|
||||||
|
|||||||
Reference in New Issue
Block a user