mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-03 17:27:03 +00:00
items in water no longer burn
This commit is contained in:
parent
d07662d11c
commit
adb9bd75ee
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user