Skip to content

Commit

Permalink
Fix cooldown setting message parsing - $ was not included in initial …
Browse files Browse the repository at this point in the history
…setting default, changed substitutor to avoid migrating settings
  • Loading branch information
fullwall committed Apr 14, 2021
1 parent 3a9e538 commit b986c4d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -626,7 +626,7 @@ public TimeVariableFormatter(long source, TimeUnit unit) {

@Override
public String apply(String t) {
return StrSubstitutor.replace(t, map);
return StrSubstitutor.replace(t, map, "{", "}");
}
}
}

0 comments on commit b986c4d

Please sign in to comment.