mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-04-04 00:41:59 +00:00
Fixed player respawning
Pass appropriate information to the VM
This commit is contained in:
parent
1542ca8e8c
commit
02b5f9a2c5
1 changed files with 4 additions and 2 deletions
|
@ -6115,8 +6115,10 @@ AActor *FLevelLocals::SpawnPlayer (FPlayerStart *mthing, int playernum, int flag
|
|||
|
||||
IFVIRTUALPTRNAME(p->mo, NAME_PlayerPawn, ResetAirSupply)
|
||||
{
|
||||
int drowning = 0;
|
||||
VMValue params[] = { p->mo, false };
|
||||
VMCall(func, params, 2, nullptr, 0);
|
||||
VMReturn rets[] = { &drowning };
|
||||
VMCall(func, params, 2, rets, 1);
|
||||
}
|
||||
|
||||
for (int ii = 0; ii < MAXPLAYERS; ++ii)
|
||||
|
@ -6151,7 +6153,7 @@ AActor *FLevelLocals::SpawnPlayer (FPlayerStart *mthing, int playernum, int flag
|
|||
IFVM(PlayerPawn, FilterCoopRespawnInventory)
|
||||
{
|
||||
VMValue params[] = { p->mo, oldactor, ((heldWeap == nullptr || (heldWeap->ObjectFlags & OF_EuthanizeMe)) ? nullptr : heldWeap) };
|
||||
VMCall(func, params, 2, nullptr, 0);
|
||||
VMCall(func, params, 3, nullptr, 0);
|
||||
}
|
||||
}
|
||||
if (oldactor != NULL)
|
||||
|
|
Loading…
Reference in a new issue