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

Meat: fix zombies going after player after revive or respawn

This commit is contained in:
Jbleezy
2023-03-10 09:32:17 -08:00
parent 2364b0bb05
commit 46a4a47b7e
2 changed files with 10 additions and 2 deletions

View File

@ -2002,7 +2002,11 @@ player_revive_protection()
wait 0.05;
}
self.ignoreme = 0;
if (!isDefined(level.meat_player))
{
self.ignoreme = 0;
}
self.revive_protection = 0;
}

View File

@ -1079,7 +1079,11 @@ player_spawn_protection()
wait 0.05;
}
self.ignoreme = 0;
if (!isDefined(level.meat_player))
{
self.ignoreme = 0;
}
self.spawn_protection = 0;
}