1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-21 13:28:05 +00:00

fixed graphical/movement glitches in the minimal quotient space

This commit is contained in:
Zeno Rogue
2018-09-23 16:30:56 +02:00
parent 631b3216ad
commit 5fac74b1cb
2 changed files with 3 additions and 2 deletions

View File

@@ -1899,8 +1899,8 @@ void moveEffect(cell *ct, cell *cf, eMonster m, int direction_hint);
void flameHalfvine(cell *c, int val) {
if(itemBurns(c->item)) {
addMessage(XLAT("%The1 burns!", c->item));
c->item = itNone;
addMessage(XLAT("%The1 burns!", c->item)), c->item = itNone;
}
c->wall = waPartialFire;
c->wparam = val;