From ab7bbd8bdbeff67167b9ce79eaea956757b244c5 Mon Sep 17 00:00:00 2001 From: Paul Date: Thu, 16 Aug 2001 18:26:23 +0000 Subject: [PATCH] --- source/player/player.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/player/player.h b/source/player/player.h index afb1f701f..606457262 100644 --- a/source/player/player.h +++ b/source/player/player.h @@ -255,7 +255,8 @@ public: int getSpatulasHeld() {return m_numSpatulasHeld;} ATTACK_STATE getAttackState(); int isRecoveringFromHit() {return m_invincibleFrameCount!=0||m_currentMode==PLAYER_MODE_DEAD;} - int wasLastHitElectrical() { return m_recoveringFromElectrocution;} + int isDead() {return m_currentMode==PLAYER_MODE_DEAD;} + int wasLastHitElectrical() {return m_recoveringFromElectrocution;} void registerAddon(PLAYER_ADDONS _addon); DVECTOR *getMoveVelocity() {return &m_moveVelocity;}