mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
Revert "- fixed: player spawn code should now always use defaults for the currently selected player class, not current flags"
This reverts commit 8dda7c02c9
.
This commit is contained in:
parent
8dda7c02c9
commit
c1421b70cf
1 changed files with 1 additions and 12 deletions
|
@ -1707,18 +1707,7 @@ void FLevelLocals::DoReborn (int playernum, bool freshbot)
|
|||
}
|
||||
else
|
||||
{
|
||||
bool isUnfriendly;
|
||||
auto p = players[playernum].mo->player;
|
||||
if (p->cls == NULL)
|
||||
{
|
||||
// this shouldn't ever happen! It's just a fall-through in case it does...
|
||||
isUnfriendly = players[playernum].mo && !(players[playernum].mo->GetDefault()->flags & MF_FRIENDLY);
|
||||
}
|
||||
else
|
||||
{
|
||||
isUnfriendly = !(GetDefaultByType(p->cls)->flags & MF_FRIENDLY);
|
||||
}
|
||||
|
||||
bool isUnfriendly = players[playernum].mo && !(players[playernum].mo->flags & MF_FRIENDLY);
|
||||
|
||||
// respawn at the start
|
||||
// first disassociate the corpse
|
||||
|
|
Loading…
Reference in a new issue