- Exhumed: Split out player double code.

This commit is contained in:
Mitchell Richters 2023-03-23 19:46:45 +11:00
parent b51623b415
commit 374f0bb295

View file

@ -906,6 +906,22 @@ static void doPlayerTorch(Player* const pPlayer)
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
static void doPlayerDouble(Player* const pPlayer)
{
pPlayer->nDouble--;
if (pPlayer->nDouble == 150 && pPlayer->nPlayer == nLocalPlayer)
{
PlayAlert(GStrings("TXT_EX_WEAPONEX"));
}
}
//---------------------------------------------------------------------------
//
// this function is pure spaghetti madness... :(
@ -944,12 +960,7 @@ void AIPlayer::Tick(RunListEvent* ev)
doPlayerTorch(pPlayer);
if (pPlayer->nDouble > 0)
{
pPlayer->nDouble--;
if (pPlayer->nDouble == 150 && nPlayer == nLocalPlayer) {
PlayAlert(GStrings("TXT_EX_WEAPONEX"));
}
}
doPlayerDouble(pPlayer);
if (pPlayer->nInvisible > 0)
{