1
0
mirror of https://github.com/JezuzLizard/BO2-Reimagined.git synced 2025-06-10 15:17:57 -05:00

Fix script runtime errors

This commit is contained in:
Jbleezy
2024-03-12 14:53:25 -07:00
parent bf24608828
commit 41a31de65f
10 changed files with 35 additions and 21 deletions

View File

@ -560,7 +560,7 @@ zombie_can_drop_powerups(zombie)
zombie_complete_emerging_into_playable_area()
{
if (self.animname == "zombie" && is_true(self.has_legs))
if (isdefined(self.animname) && self.animname == "zombie" && is_true(self.has_legs))
{
self setphysparams(15, 0, 60);
}