1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-17 18:54:48 +00:00

Animate destruction of arrow traps

This commit is contained in:
Jesse Ruderman 2021-08-02 22:18:23 -07:00
parent b67b946126
commit b8aab5e50d

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);
}
}