mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-02-03 04:39:17 +00:00
disabled particles for Worms/Tentacles out of ground
This commit is contained in:
parent
6acd227e27
commit
02f63201d6
2
game.cpp
2
game.cpp
@ -4197,7 +4197,7 @@ void moveWorm(cell *c) {
|
|||||||
cell *c2 = c, *c3 = c2;
|
cell *c2 = c, *c3 = c2;
|
||||||
while(c2->monst == moTentacletail || c2->monst == moTentacleGhost) {
|
while(c2->monst == moTentacletail || c2->monst == moTentacleGhost) {
|
||||||
if(c2->mondir == NODIR) {
|
if(c2->mondir == NODIR) {
|
||||||
drawParticles(c2, (linf[c2->land].color & 0xF0F0F0), 16, 50);
|
// drawParticles(c2, (linf[c2->land].color & 0xF0F0F0), 16, 50);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
c3 = c2, c2 = c3->mov[c2->mondir];
|
c3 = c2, c2 = c3->mov[c2->mondir];
|
||||||
|
Loading…
Reference in New Issue
Block a user