1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-18 11:19:59 +00:00

disabled particles for Worms/Tentacles out of ground

This commit is contained in:
Zeno Rogue 2018-01-11 23:17:10 +01:00
parent 6acd227e27
commit 02f63201d6

View File

@ -4197,7 +4197,7 @@ void moveWorm(cell *c) {
cell *c2 = c, *c3 = c2;
while(c2->monst == moTentacletail || c2->monst == moTentacleGhost) {
if(c2->mondir == NODIR) {
drawParticles(c2, (linf[c2->land].color & 0xF0F0F0), 16, 50);
// drawParticles(c2, (linf[c2->land].color & 0xF0F0F0), 16, 50);
return;
}
c3 = c2, c2 = c3->mov[c2->mondir];