mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI.git
synced 2024-12-29 04:18:02 +01:00
Add deprecated setPlaceholders(Player) methods back to prevent exceptions with plugins parsing placeholders
This commit is contained in:
parent
53fb678035
commit
2894d525f2
@ -163,6 +163,7 @@ public class PlaceholderAPI {
|
|||||||
return setPlaceholders(p, text, PLACEHOLDER_PATTERN);
|
return setPlaceholders(p, text, PLACEHOLDER_PATTERN);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* set placeholders in the list<String> text provided placeholders are matched with the pattern
|
* set placeholders in the list<String> text provided placeholders are matched with the pattern
|
||||||
* %(identifier)_(params)>% when set with this method
|
* %(identifier)_(params)>% when set with this method
|
||||||
@ -370,4 +371,24 @@ public class PlaceholderAPI {
|
|||||||
public static boolean unregisterPlaceholderHook(Plugin plugin) {
|
public static boolean unregisterPlaceholderHook(Plugin plugin) {
|
||||||
return plugin != null && unregisterPlaceholderHook(plugin.getName());
|
return plugin != null && unregisterPlaceholderHook(plugin.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
public static String setPlaceholders(Player p, String text) {
|
||||||
|
return setPlaceholders((OfflinePlayer)p, text, PLACEHOLDER_PATTERN);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
public static List<String> setPlaceholders(Player p, List<String> text) {
|
||||||
|
return setPlaceholders((OfflinePlayer)p, text, PLACEHOLDER_PATTERN);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
public static String setBracketPlaceholders(Player p, String text) {
|
||||||
|
return setPlaceholders((OfflinePlayer)p, text, BRACKET_PLACEHOLDER_PATTERN);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
public static List<String> setBracketPlaceholders(Player p, List<String> text) {
|
||||||
|
return setPlaceholders((OfflinePlayer)p, text, BRACKET_PLACEHOLDER_PATTERN);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user