mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 15:00:46 +00:00
- Exhumed: Split out player double code.
This commit is contained in:
parent
b51623b415
commit
374f0bb295
1 changed files with 17 additions and 6 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue