mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
fix: Strip redundant space at flag collection (#3400)
This commit is contained in:
parent
1f26808c7b
commit
e042566bb7
@ -2856,7 +2856,7 @@ public class Plot {
|
|||||||
flags = MINI_MESSAGE.parse(TranslatableCaption.of("info.none").getComponent(player));
|
flags = MINI_MESSAGE.parse(TranslatableCaption.of("info.none").getComponent(player));
|
||||||
} else {
|
} else {
|
||||||
TextComponent.Builder flagBuilder = Component.text();
|
TextComponent.Builder flagBuilder = Component.text();
|
||||||
String prefix = " ";
|
String prefix = "";
|
||||||
for (final PlotFlag<?, ?> flag : flagCollection) {
|
for (final PlotFlag<?, ?> flag : flagCollection) {
|
||||||
Object value;
|
Object value;
|
||||||
if (flag instanceof DoubleFlag && !Settings.General.SCIENTIFIC) {
|
if (flag instanceof DoubleFlag && !Settings.General.SCIENTIFIC) {
|
||||||
|
Loading…
Reference in New Issue
Block a user