feat: Improve wording of allowed-plugins message (#1341)

Fixes #1319
This commit is contained in:
NotMyFault
2021-10-07 19:12:17 +02:00
committed by GitHub
parent 546ad86841
commit e2924f4cba
3 changed files with 28 additions and 35 deletions

View File

@ -167,7 +167,6 @@ public final class EditSessionBuilder {
}
/**
*
* Get the {@link BlockBag} associated with the edit if present or null
*/
@Nullable
@ -664,23 +663,20 @@ public final class EditSessionBuilder {
event.getActor().printDebug(TextComponent.of("Potentially unsafe extent blocked: " + toReturn
.getClass()
.getName()));
event.getActor().printDebug(TextComponent.of(
" - For area restrictions and block logging, it is recommended to use the FaweAPI"));
event.getActor().printDebug(TextComponent.of(" - To allow " + toReturn
.getClass()
.getName() + ", add it to the FAWE `allowed-plugins` list in config.yml"));
event.getActor().printDebug(TextComponent.of(
" - If you are unsure which plugin tries to use the extent, you can find some additional information below:"));
event.getActor().printDebug(TextComponent.of(" - " + toReturn.getClass().getClassLoader()));
event.getActor().print(TextComponent.of(
"- For area restrictions and block logging, it is recommended that third party plugins use the FAWE" +
" API"));
event.getActor().print(TextComponent.of("- Add the following line to the `allowed-plugins` list in the " +
"FAWE config.yml to let FAWE recognize the extent:"));
event.getActor().print(toReturn.getClass().getName());
} else {
LOGGER.debug("Potentially unsafe extent blocked: " + toReturn.getClass().getName());
LOGGER.debug(" - For area restrictions and block logging, it is recommended to use the FaweAPI");
LOGGER.debug(" - To allow " + toReturn
.getClass()
.getName() + ", add it to the FAWE `allowed-plugins` list in config.yml");
LOGGER.debug(
" - If you are unsure which plugin tries to use the extent, you can find some additional information below:");
LOGGER.debug(" - " + toReturn.getClass().getClassLoader());
LOGGER.warn("Potentially unsafe extent blocked: " + toReturn.getClass().getName());
LOGGER.warn(
" - For area restrictions and block logging, it is recommended that third party plugins use the FAWE API");
LOGGER.warn(
" - Add the following classpath to the `allowed-plugins` list in the FAWE config.yml to let FAWE " +
"recognize the extent:");
LOGGER.warn(toReturn.getClass().getName());
}
}
}