Animate destruction of arrow traps

This commit is contained in:
Jesse Ruderman 2021-08-02 22:18:23 -07:00
parent b67b946126
commit b8aab5e50d
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);
}
}