Skip to content

Commit

Permalink
более сильный взрыв
Browse files Browse the repository at this point in the history
  • Loading branch information
Darkness committed Oct 12, 2023
1 parent 764c0e9 commit 2f1d76e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/arena/boss/BossBullets.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public static void impact(float x, float y) {
Damage.status(state.rules.waveTeam, x, y, 1024f, StatusEffects.disarmed, 300f, true, true);

Groups.unit.each(unit -> {
float distance = 256f - unit.dst(x, y);
float distance = 320f - unit.dst(x, y);
if (distance <= 0f) return;

unit.move(Tmp.v1.set(unit).sub(x, y).setLength(distance * 8f));
Expand Down

0 comments on commit 2f1d76e

Please sign in to comment.