Skip to content

Commit 9bb0eef

Browse files
committed
Fix particle customization
1 parent 488fdd7 commit 9bb0eef

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Code/Entities/NonReturnCrushBlock.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ private void ActivateParticles(Vector2 dir)
474474
}
475475
}
476476
num += 2;
477-
this.level.Particles.Emit(CrushBlock.P_Activate, num, position, positionRange, direction);
477+
this.level.Particles.Emit(P_Activate, num, position, positionRange, direction);
478478
}
479479

480480
private IEnumerator AttackSequence()

Code/Entities/NonReturnSokoban.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ private void ActivateParticles(Vector2 dir)
467467
}
468468
}
469469
num += 2;
470-
this.level.Particles.Emit(CrushBlock.P_Activate, num, position, positionRange, direction);
470+
this.level.Particles.Emit(P_Activate, num, position, positionRange, direction);
471471
}
472472

473473
private IEnumerator AttackSequence()

0 commit comments

Comments
 (0)