diff --git a/scripts/Game_Character_1.rb b/scripts/Game_Character_1.rb index fae8d62..0b38a9a 100644 --- a/scripts/Game_Character_1.rb +++ b/scripts/Game_Character_1.rb @@ -264,7 +264,7 @@ class Game_Character # If character else # If height exceeds 32, then add 31 - return z + ((height > 32) ? 31 : 0) + return z + (((height || 0) > 32) ? 31 : 0) end end #--------------------------------------------------------------------------