glen crash fix

This commit is contained in:
Issac332 2026-07-01 16:47:50 +03:00
parent eec30c4786
commit a5b885f359

View file

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