Skip to content

Commit

Permalink
Scaled logic explosions
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Dec 16, 2024
1 parent fc5b508 commit a91729a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/mindustry/logic/LExecutor.java
Original file line number Diff line number Diff line change
Expand Up @@ -1702,7 +1702,7 @@ public void run(LExecutor exec){
public static void logicExplosion(Team team, float x, float y, float radius, float damage, boolean air, boolean ground, boolean pierce, boolean effect){
if(damage < 0f) return;

Damage.damage(team, x, y, radius, damage, pierce, air, ground);
Damage.damage(team, x, y, radius, damage, pierce, air, ground, true, null);
if(effect){
if(pierce){
Fx.spawnShockwave.at(x, y, World.conv(radius));
Expand Down

0 comments on commit a91729a

Please sign in to comment.