From e40ab50e10302a14818f2bd4e32f167d5a5207ac Mon Sep 17 00:00:00 2001 From: buthed010203 Date: Sat, 7 Aug 2021 21:24:03 -0400 Subject: [PATCH] why are there soaces here ? (#5716) good question --- core/src/mindustry/entities/comp/BuildingComp.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/entities/comp/BuildingComp.java b/core/src/mindustry/entities/comp/BuildingComp.java index b474a8bfdf..9e7ffc8d79 100644 --- a/core/src/mindustry/entities/comp/BuildingComp.java +++ b/core/src/mindustry/entities/comp/BuildingComp.java @@ -1074,7 +1074,7 @@ abstract class BuildingComp implements Posc, Teamc, Healthc, Buildingc, Timerc, public String getDisplayName(){ //derelict team icon currently doesn't display - return team == Team.derelict ? + return team == Team.derelict ? block.localizedName + "\n" + Core.bundle.get("block.derelict") : block.localizedName + (team == player.team() || team.emoji.isEmpty() ? "" : " " + team.emoji); }