Skip to content

Commit

Permalink
Address #1190, do not "restore" max_hp for ghosts.
Browse files Browse the repository at this point in the history
  • Loading branch information
flambard-took committed Jan 28, 2019
1 parent ed6b1b5 commit 9113b54
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/server/xtra2.c
Expand Up @@ -2826,7 +2826,8 @@ void player_death(int Ind)
/** Survived death **/

/* Give him his hit points back */
p_ptr->mhp = p_ptr->lev + 2;
//see #1190
//p_ptr->mhp = p_ptr->lev + 2;
p_ptr->chp = p_ptr->mhp;
p_ptr->chp_frac = 0;

Expand Down

0 comments on commit 9113b54

Please sign in to comment.