diff --git a/doc/fixes3-7-0.txt b/doc/fixes3-7-0.txt index 4dd9c189a..fcb28a135 100644 --- a/doc/fixes3-7-0.txt +++ b/doc/fixes3-7-0.txt @@ -1545,6 +1545,7 @@ some types of shopkeeper now start with a scroll of charging objects are now accurately tracked as discovered even if not type-named nor formally identified (fixing some bugs in scroll writing, and making the discoveries list more accurate) +you cannot sacrifice objects/corpses while stunned or confused Fixes to 3.7.0-x General Problems Exposed Via git Repository diff --git a/src/pray.c b/src/pray.c index b515374d7..075711400 100644 --- a/src/pray.c +++ b/src/pray.c @@ -1861,7 +1861,7 @@ dosacrifice(void) You("are not %s an altar.", (Levitation || Flying) ? "over" : "on"); return ECMD_OK; - } else if (Confusion || Stunned || Hallucination) { + } else if (Confusion || Stunned) { You("are too impaired to perform the rite."); return ECMD_OK; }