1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-16 02:09:59 +00:00

Ivy to Vine no longer overwrites Round Table

This commit is contained in:
Jesse Ruderman 2021-07-10 19:11:18 -07:00
parent 8f8cbfd4c7
commit 5bb2650820

View File

@ -978,7 +978,8 @@ EX void removeIvy(cell *c) {
// note that semi-vines don't count // note that semi-vines don't count
if(c->move(i)->wall == waVinePlant) { if(c->move(i)->wall == waVinePlant) {
destroyHalfvine(c); destroyHalfvine(c);
c->wall = waVinePlant; if (!do_not_touch_this_wall(c))
c->wall = waVinePlant;
} }
if(c->wall != waVinePlant) { if(c->wall != waVinePlant) {
if(m == moIvyDead) if(m == moIvyDead)