mirror of
https://github.com/yquake2/rogue.git
synced 2025-02-16 17:11:02 +00:00
Merge pull request #66 from NeonKnightOA/disguisefix
Fix: Disguise isn't traspassed between levels.
This commit is contained in:
commit
8dd1007284
1 changed files with 1 additions and 1 deletions
|
@ -874,7 +874,7 @@ SaveClientData(void)
|
|||
|
||||
game.clients[i].pers.health = ent->health;
|
||||
game.clients[i].pers.max_health = ent->max_health;
|
||||
game.clients[i].pers.savedFlags = (ent->flags & (FL_GODMODE | FL_NOTARGET | FL_POWER_ARMOR));
|
||||
game.clients[i].pers.savedFlags = (ent->flags & (FL_GODMODE | FL_NOTARGET | FL_POWER_ARMOR | FL_DISGUISED));
|
||||
|
||||
if (coop->value)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue