eco 5.6.0 changes

This commit is contained in:
Auxilor 2021-07-01 22:32:52 +01:00
parent 0b4899d3e2
commit 356b723988

View File

@ -118,14 +118,6 @@ public class EcoEnchantsPlugin extends EcoPlugin {
this.getExtensionLoader().unloadExtensions();
}
/**
* Nothing is called on plugin load.
*/
@Override
public void load() {
// Nothing needs to be called on load
}
/**
* Code executed on /ecoreload.
*/
@ -196,16 +188,6 @@ public class EcoEnchantsPlugin extends EcoPlugin {
);
}
/**
* Packet Adapters for enchant display.
*
* @return A list of packet adapters.
*/
@Override
public List<AbstractPacketAdapter> getPacketAdapters() {
return new ArrayList<>();
}
/**
* EcoEnchants-specific listeners.
*
@ -241,4 +223,9 @@ public class EcoEnchantsPlugin extends EcoPlugin {
protected DisplayModule createDisplayModule() {
return new EnchantDisplay(this);
}
@Override
protected String getMinimumEcoVersion() {
return "5.6.0";
}
}