1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-27 23:53:18 +00:00

Merge pull request #216 from jruderman/camelot_vine

Ivy to Vine no longer overwrites Round Table
This commit is contained in:
Zeno Rogue 2021-07-11 09:44:46 +02:00 committed by GitHub
commit 9722bfc9e7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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