Merge pull request #278 from jruderman/detrap_particles

Animate destruction of arrow traps
This commit is contained in:
Zeno Rogue 2021-08-04 19:09:41 +02:00 committed by GitHub
commit f5264e49c7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -866,6 +866,7 @@ EX void destroyTrapsOn(cell *c) {
if(c->wall == waArrowTrap) {
changes.ccell(c);
c->wall = waNone;
drawParticles(c, 0xFF0000, 4);
destroyTrapsAround(c);
}
}