mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-10-21 00:47:40 +00:00
disabled particles for Worms/Tentacles out of ground
This commit is contained in:
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];
|
||||||
|
Reference in New Issue
Block a user