1
0
Fork 0
mirror of https://codeberg.org/noisytoot/notnotdnethack.git synced 2025-05-13 02:45:05 +01:00

Fix Turn-To-Stone Bug

This commit is contained in:
Chris-plus-alphanumericgibberish 2014-06-25 15:41:04 -04:00
parent ae51b354fd
commit f4c86e9e61

View file

@ -928,7 +928,7 @@ int spellnum;
verbalize(rn2(2) ? "I shall make a statue of thee!" :
"I condemn thee to eternity unmoving!");
if (!(poly_when_stoned(youmonst.data) && polymon(PM_STONE_GOLEM))) {
if(!Stone_resistance && !(rn2(10) && (have_lizard()) || Free_action) ){
if(!Stone_resistance && (!rn2(10) || !(have_lizard() || Free_action)) ){
You_feel("less limber.");
Stoned = 5;
}else{