mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
parent
c82d9d2908
commit
ce03813ab1
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ bool UseHeart(short nPlayer)
|
||||||
// invincibility
|
// invincibility
|
||||||
bool UseScarab(short nPlayer)
|
bool UseScarab(short nPlayer)
|
||||||
{
|
{
|
||||||
if (PlayerList[nPlayer].invincibility > 0 && PlayerList[nPlayer].invincibility < 900)
|
if (PlayerList[nPlayer].invincibility >= 0 && PlayerList[nPlayer].invincibility < 900)
|
||||||
PlayerList[nPlayer].invincibility = 900;
|
PlayerList[nPlayer].invincibility = 900;
|
||||||
|
|
||||||
if (nPlayer == nLocalPlayer)
|
if (nPlayer == nLocalPlayer)
|
||||||
|
|
Loading…
Reference in a new issue