From a9f159cc70c0f6419775b22d0f3ca3a135da9927 Mon Sep 17 00:00:00 2001 From: Olof Larsson Date: Thu, 28 Jan 2016 16:26:51 +0100 Subject: [PATCH] Indent Map entries in editor and use silver colon. --- .../massivecore/command/type/collection/TypeMapAbstract.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/massivecraft/massivecore/command/type/collection/TypeMapAbstract.java b/src/com/massivecraft/massivecore/command/type/collection/TypeMapAbstract.java index e0f0e98f..3f467cc2 100644 --- a/src/com/massivecraft/massivecore/command/type/collection/TypeMapAbstract.java +++ b/src/com/massivecraft/massivecore/command/type/collection/TypeMapAbstract.java @@ -61,7 +61,7 @@ public abstract class TypeMapAbstract, K, V> extends TypeAbs V entryValue = entry.getValue(); String visualValue = this.getMapValueType().getVisual(entryValue, sender); - String part = Txt.parse("%s: %s", visualKey, visualValue); + String part = Txt.parse("# %s: %s", visualKey, visualValue); parts.add(part); }