mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-05 09:09:40 +01:00
Add more warnings for async custom disguises
This commit is contained in:
parent
d2b078be85
commit
4e3f86acd0
@ -254,6 +254,12 @@ public class DisguiseConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static Entry<DisguisePerm, Disguise> getCustomDisguise(String disguise) {
|
public static Entry<DisguisePerm, Disguise> getCustomDisguise(String disguise) {
|
||||||
|
if (!Bukkit.isPrimaryThread()) {
|
||||||
|
DisguiseUtilities.getLogger().warning(
|
||||||
|
"Custom Disguises should not be called async! This operation will become impossible in the " +
|
||||||
|
"future!");
|
||||||
|
}
|
||||||
|
|
||||||
Entry<DisguisePerm, String> entry = getRawCustomDisguise(disguise);
|
Entry<DisguisePerm, String> entry = getRawCustomDisguise(disguise);
|
||||||
|
|
||||||
if (entry == null) {
|
if (entry == null) {
|
||||||
@ -273,6 +279,12 @@ public class DisguiseConfig {
|
|||||||
|
|
||||||
public static Entry<DisguisePerm, Disguise> getCustomDisguise(Entity target,
|
public static Entry<DisguisePerm, Disguise> getCustomDisguise(Entity target,
|
||||||
String disguise) throws IllegalAccessException, DisguiseParseException, InvocationTargetException {
|
String disguise) throws IllegalAccessException, DisguiseParseException, InvocationTargetException {
|
||||||
|
if (!Bukkit.isPrimaryThread()) {
|
||||||
|
DisguiseUtilities.getLogger().warning(
|
||||||
|
"Custom Disguises should not be called async! This operation will become impossible in the " +
|
||||||
|
"future!");
|
||||||
|
}
|
||||||
|
|
||||||
Entry<DisguisePerm, String> entry = getRawCustomDisguise(disguise);
|
Entry<DisguisePerm, String> entry = getRawCustomDisguise(disguise);
|
||||||
|
|
||||||
if (entry == null) {
|
if (entry == null) {
|
||||||
@ -285,6 +297,12 @@ public class DisguiseConfig {
|
|||||||
|
|
||||||
public static Entry<DisguisePerm, Disguise> getCustomDisguise(CommandSender invoker, Entity target,
|
public static Entry<DisguisePerm, Disguise> getCustomDisguise(CommandSender invoker, Entity target,
|
||||||
String disguise) throws IllegalAccessException, DisguiseParseException, InvocationTargetException {
|
String disguise) throws IllegalAccessException, DisguiseParseException, InvocationTargetException {
|
||||||
|
if (!Bukkit.isPrimaryThread()) {
|
||||||
|
DisguiseUtilities.getLogger().warning(
|
||||||
|
"Custom Disguises should not be called async! This operation will become impossible in the " +
|
||||||
|
"future!");
|
||||||
|
}
|
||||||
|
|
||||||
Entry<DisguisePerm, String> entry = getRawCustomDisguise(disguise);
|
Entry<DisguisePerm, String> entry = getRawCustomDisguise(disguise);
|
||||||
|
|
||||||
if (entry == null) {
|
if (entry == null) {
|
||||||
@ -633,6 +651,12 @@ public class DisguiseConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static void addCustomDisguise(String disguiseName, String toParse) throws DisguiseParseException {
|
public static void addCustomDisguise(String disguiseName, String toParse) throws DisguiseParseException {
|
||||||
|
if (!Bukkit.isPrimaryThread()) {
|
||||||
|
DisguiseUtilities.getLogger().warning(
|
||||||
|
"Custom Disguises should not be called async! This operation will become impossible in the " +
|
||||||
|
"future!");
|
||||||
|
}
|
||||||
|
|
||||||
if (getRawCustomDisguise(toParse) != null) {
|
if (getRawCustomDisguise(toParse) != null) {
|
||||||
throw new DisguiseParseException(LibsMsg.CUSTOM_DISGUISE_NAME_CONFLICT, disguiseName);
|
throw new DisguiseParseException(LibsMsg.CUSTOM_DISGUISE_NAME_CONFLICT, disguiseName);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user