fixed Bulldash fallthrough to Rose

This commit is contained in:
Zeno Rogue 2017-10-14 19:16:04 +02:00
parent 9ddea83b87
commit eda08be74a
1 changed files with 2 additions and 1 deletions

View File

@ -958,7 +958,8 @@ void giantLandSwitch(cell *c, int d, cell *from) {
}
else {
int i = zebra40(c);
if(i >= 40 && hrand(100) < 50)
if(c->wall);
else if(i >= 40 && hrand(100) < 50)
c->wall = hrand(2) ? waCharged : waGrounded;
else if(ishept(c) && hrand(100) < 20)
c->wall = waSandstone;