A variant of NetHack that is designed to be a much more challenging experience than the original, drawing inspiration and content from various existing variants along with adding unique and never-before-seen custom content.
Other
53
stars
22
forks
source link
Dipping potion of acid in fountain causes heap-use-after-free #107
Change
if (obj->otyp == POT_ACID && er != ER_DESTROYED) { / Acid and water don't mix /
to
if (er != ER_DESTROYED && obj->otyp == POT_ACID) { / Acid and water don't mix /
In fountain.c: dipfountain()
Change if (obj->otyp == POT_ACID && er != ER_DESTROYED) { / Acid and water don't mix / to if (er != ER_DESTROYED && obj->otyp == POT_ACID) { / Acid and water don't mix /