Skip to content

Commit

Permalink
Fix errors in moffer lifesaved handling
Browse files Browse the repository at this point in the history
Hopefully corrected the check for whether the ascended monster is a
demigoddess, and removed usage of cloud_of_smoke.
  • Loading branch information
Ardub23 authored Aug 13, 2023
1 parent 329bcda commit bedc19c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pray.c
Original file line number Diff line number Diff line change
Expand Up @@ -1592,16 +1592,15 @@ register struct monst *mtmp;
done(ESCAPED);
} else {
pline_The("Demigod%s of %s looks down upon you and squashes you like the ant that you are.",
is_female(mtmp) ? "dess" : "",
mtmp->female ? "dess" : "",
a_gname_at(mtmp->mx, mtmp->my));
Sprintf(killer.name, "%s indifference", s_suffix(mon_nam(mtmp)));
killer.format = KILLED_BY;
done(DIED);
}
}
/* life-saved, or refusing to die in explore/debug mode */
pline("%s frowns, but permits you to live.", Monnam(mtmp));
pline(cloud_of_smoke, hcolor(NH_ORANGE));
pline("%s frowns and casts you back to the mortal realm.", Monnam(mtmp));
done(ESCAPED);
return 3;
}
Expand Down

0 comments on commit bedc19c

Please sign in to comment.