Followup to erinyes changes / offering while impaired
The important part of the "don't offer while impaired" change was to prevent offering while confused. However, it was also extended to other status conditions: stunning seems fine, but hallucination was problematic (both because it makes a large number of messages inaccessible, and because hallucination is more of a long-term status effect than the other two and players may sometimes choose to play with it for a large portion of the game). So make the change trigger only on stunning and confusion, not hallucination. This also updates the changelog for the change, because while connected to the erinys changes, it's technically separate and is relevant even in games where erinyes are never summoned.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user