mirror of
https://github.com/JezuzLizard/BO2-Reimagined.git
synced 2025-06-12 08:08:00 -05:00
Meat: fix zombies going after player after revive or respawn
This commit is contained in:
@ -2002,7 +2002,11 @@ player_revive_protection()
|
|||||||
wait 0.05;
|
wait 0.05;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.ignoreme = 0;
|
if (!isDefined(level.meat_player))
|
||||||
|
{
|
||||||
|
self.ignoreme = 0;
|
||||||
|
}
|
||||||
|
|
||||||
self.revive_protection = 0;
|
self.revive_protection = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1079,7 +1079,11 @@ player_spawn_protection()
|
|||||||
wait 0.05;
|
wait 0.05;
|
||||||
}
|
}
|
||||||
|
|
||||||
self.ignoreme = 0;
|
if (!isDefined(level.meat_player))
|
||||||
|
{
|
||||||
|
self.ignoreme = 0;
|
||||||
|
}
|
||||||
|
|
||||||
self.spawn_protection = 0;
|
self.spawn_protection = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user