Merge branch 'master' into develop

This commit is contained in:
Auxilor 2021-04-27 12:59:30 +01:00
commit 2eeff1c369
2 changed files with 17 additions and 1 deletions

View File

@ -48,6 +48,10 @@ public class ItemConversions extends PluginDependent implements Listener {
*/
@EventHandler
public void loreConverter(@NotNull final PlayerItemHeldEvent event) {
if (this.getPlugin().getDisplayModule() == null) { // If plugin hasn't finished loading.
return;
}
if (!((EnchantDisplay) this.getPlugin().getDisplayModule()).getOptions().isUsingLoreGetter()) {
return;
}
@ -66,6 +70,10 @@ public class ItemConversions extends PluginDependent implements Listener {
*/
@EventHandler
public void aggressiveLoreConverter(@NotNull final InventoryOpenEvent event) {
if (this.getPlugin().getDisplayModule() == null) { // If plugin hasn't finished loading.
return;
}
if (!((EnchantDisplay) this.getPlugin().getDisplayModule()).getOptions().isUsingAggressiveLoreGetter()) {
return;
}
@ -163,6 +171,10 @@ public class ItemConversions extends PluginDependent implements Listener {
*/
@EventHandler
public void hideFixer(@NotNull final PlayerItemHeldEvent event) {
if (this.getPlugin().getDisplayModule() == null) { // If plugin hasn't finished loading.
return;
}
if (!((EnchantDisplay) this.getPlugin().getDisplayModule()).getOptions().isUsingExperimentalHideFixer()) {
return;
}
@ -181,6 +193,10 @@ public class ItemConversions extends PluginDependent implements Listener {
*/
@EventHandler
public void aggressiveHideFixer(@NotNull final InventoryOpenEvent event) {
if (this.getPlugin().getDisplayModule() == null) { // If plugin hasn't finished loading.
return;
}
if (!((EnchantDisplay) this.getPlugin().getDisplayModule()).getOptions().isUsingAggressiveExperimentalHideFixer()) {
return;
}

View File

@ -1,2 +1,2 @@
version = 7.2.11
version = 7.2.12
plugin-name = EcoEnchants