summaryrefslogtreecommitdiff
path: root/src/strife/p_inter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/strife/p_inter.c')
-rw-r--r--src/strife/p_inter.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/strife/p_inter.c b/src/strife/p_inter.c
index 4a7a173d..9bedd78c 100644
--- a/src/strife/p_inter.c
+++ b/src/strife/p_inter.c
@@ -260,7 +260,6 @@ boolean P_GiveBody(player_t* player, int num)
// Set mo->health for consistency.
// haleyjd 20110225: Seems Strife can call this on a NULL player->mo
// when giving items to players that are not in the game...
- // STRIFE-FIXME: needs major verification!
mo = P_SubstNullMobj(player->mo);
mo->health = player->health;
}
@@ -287,7 +286,7 @@ boolean P_GiveBody(player_t* player, int num)
if(player->health >= healing)
return false;
- // Set health. Oddly, mo->health is NOT set here...
+ // Set health. BUG: Oddly, mo->health is NOT set here...
player->health = healing;
}