Fix onLoad, restore WG support

This commit is contained in:
Shane Freeder
2020-03-05 01:12:02 +00:00
parent f96ba1b4b5
commit 21b4bcc21f
3 changed files with 19 additions and 7 deletions

View File

@ -13,7 +13,7 @@ import co.aikar.commands.CommandIssuer;
import co.aikar.commands.CommandManager;
import co.aikar.commands.CommandOperationContext;
public interface PlatformProvider {
public interface PlatformProvider<E> {
Logger getLogger();
@ -57,6 +57,9 @@ public interface PlatformProvider {
@Deprecated
MMOEntity<?> getEntity(UUID uniqueId);
@Deprecated
MMOEntity<?> getEntity(E uniqueId);
@Deprecated
Object getChimaeraWing();
}