Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
BalaM314 committed Dec 11, 2023
1 parent 6c0cd2d commit 213c184
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package mindustry.entities.abilities;

import arc.math.*;
import arc.scene.ui.layout.*;
import arc.util.noise.*;
import mindustry.content.*;
import mindustry.entities.*;
Expand All @@ -18,7 +19,7 @@ public class LiquidExplodeAbility extends Ability{

@Override
public void addStats(Table t){
t.add(amount + " " + liquid.emoji() + " " + liquid.localizedName);
t.add(amount + " puddles of " + liquid.emoji() + " " + liquid.localizedName);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package mindustry.entities.abilities;

import arc.math.*;
import arc.scene.ui.layout.*;
import arc.util.*;
import mindustry.content.*;
import mindustry.entities.*;
Expand Down

0 comments on commit 213c184

Please sign in to comment.