items in water no longer burn

This commit is contained in:
Zeno Rogue 2021-07-04 09:54:47 +02:00
parent d07662d11c
commit adb9bd75ee
1 changed files with 1 additions and 1 deletions

View File

@ -355,7 +355,7 @@ EX bool snakepile(cell *c, eMonster m) {
EX bool makeflame(cell *c, int timeout, bool checkonly) {
changes.ccell(c);
if(!checkonly) destroyTrapsOn(c);
if(itemBurns(c->item)) {
if(itemBurns(c->item) && !isWatery(c) && c->wall != waShallow) {
if(checkonly) return true;
if(c->cpdist <= 7)
addMessage(XLAT("%The1 burns!", c->item));