From a5b885f359d1924da8debfa8bea8b39c8d1ab72c Mon Sep 17 00:00:00 2001 From: Issac332 <119879937+Issac8658@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:47:50 +0300 Subject: [PATCH] glen crash fix --- scripts/Game_Character_1.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 #--------------------------------------------------------------------------