1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-22 17:21:21 +00:00

Fire spreading is now simulated in the whole generated part of the world.

This commit is contained in:
Zeno Rogue
2017-09-03 00:33:35 +02:00
parent 42da061f2f
commit 5e0afffb63
5 changed files with 106 additions and 135 deletions

View File

@@ -632,8 +632,8 @@ bool isGrave(eWall w) {
return w == waFreshGrave || w == waAncientGrave;
}
bool isTree(cell *c) {
return false; // c->wall == waBigTree || c->wall == waSmallTree;
bool isStandardTree(cell *c) {
return c->wall == waBigTree || c->wall == waSmallTree;
}
bool highwall(cell *c) {