Fix cooldown setting message parsing - $ was not included in initial setting default, changed substitutor to avoid migrating settings

This commit is contained in:
fullwall 2021-04-14 19:41:37 +08:00
parent 3a9e538c00
commit b986c4dcb8

View File

@ -626,7 +626,7 @@ public class CommandTrait extends Trait {
@Override @Override
public String apply(String t) { public String apply(String t) {
return StrSubstitutor.replace(t, map); return StrSubstitutor.replace(t, map, "{", "}");
} }
} }
} }