forked from Upstream/mmocore
Changed the way placeholders are parsed in the GUI
This commit is contained in:
parent
56996788a9
commit
735baac901
@ -15,17 +15,14 @@ public class Placeholders {
|
||||
|
||||
public String apply(Player player, String str) {
|
||||
|
||||
/*
|
||||
* Remove potential conditions, apply color codes
|
||||
* and external placeholders if needed.
|
||||
*/
|
||||
str = MMOCore.plugin.placeholderParser.parse(player, removeCondition(str));
|
||||
|
||||
// Internal placeholders
|
||||
while (str.contains("{") && str.substring(str.indexOf("{")).contains("}")) {
|
||||
String holder = str.substring(str.indexOf("{") + 1, str.indexOf("}"));
|
||||
str = str.replace("{" + holder + "}", placeholders.getOrDefault(holder, "Error"));
|
||||
}
|
||||
return str;
|
||||
|
||||
// External placeholders
|
||||
return MMOCore.plugin.placeholderParser.parse(player, removeCondition(str));
|
||||
}
|
||||
|
||||
private String removeCondition(String str) {
|
||||
|
Loading…
Reference in New Issue
Block a user