Hotfix some exceptions

This commit is contained in:
2025-03-03 10:01:56 +01:00
parent 5f73395b63
commit caee70c07e
3 changed files with 23 additions and 23 deletions
@@ -51,10 +51,10 @@ public class TrippleCircle extends Circle {
particleElement.tick(particleTickData.withLocation(location.clone().add(vector)));
vector.rotateAroundY(120 / 180.0);
vector.rotateAroundY(Math.toRadians(120));
second.tick(particleTickData.withLocation(location.clone().add(vector)));
vector.rotateAroundY(120 / 180.0);
vector.rotateAroundY(Math.toRadians(120));
third.tick(particleTickData.withLocation(location.clone().add(vector)));
}
}