mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- missed two lines.
This commit is contained in:
parent
78b7b64237
commit
f410762695
2 changed files with 2 additions and 2 deletions
|
@ -2585,7 +2585,7 @@ void Net_DoCommand (int type, uint8_t **stream, int player)
|
||||||
const PClass *cls_rep = cls->GetReplacement();
|
const PClass *cls_rep = cls->GetReplacement();
|
||||||
if (cls != cls_rep)
|
if (cls != cls_rep)
|
||||||
{
|
{
|
||||||
removecount += RemoveClass(&leve, cls_rep);
|
removecount += RemoveClass(&level, cls_rep);
|
||||||
}
|
}
|
||||||
Printf("Removed %d actors of type %s.\n", removecount, s);
|
Printf("Removed %d actors of type %s.\n", removecount, s);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1024,7 +1024,7 @@ void FLevelLocals::Serialize(FSerializer &arc, bool hubload)
|
||||||
FWeaponSlots::SetupWeaponSlots(players[i].mo);
|
FWeaponSlots::SetupWeaponSlots(players[i].mo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
AActor::RecreateAllAttachedLights();
|
RecreateAllAttachedLights();
|
||||||
InitPortalGroups(this);
|
InitPortalGroups(this);
|
||||||
|
|
||||||
automap->UpdateShowAllLines();
|
automap->UpdateShowAllLines();
|
||||||
|
|
Loading…
Reference in a new issue