From 374f0bb295579c98f21e483c5e90084319689adf Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 23 Mar 2023 19:46:45 +1100 Subject: [PATCH] - Exhumed: Split out player double code. --- source/games/exhumed/src/player.cpp | 23 +++++++++++++++++------ 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/source/games/exhumed/src/player.cpp b/source/games/exhumed/src/player.cpp index a8cba24bb..a08959f5b 100644 --- a/source/games/exhumed/src/player.cpp +++ b/source/games/exhumed/src/player.cpp @@ -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) {