Fixes #304 WAILA Integration updated and fixed
WAILA offers a new interface to sync the server data to the client.
This commit is contained in:
@@ -20,15 +20,15 @@ package appeng.integration;
|
||||
|
||||
public abstract class BaseModule implements IIntegrationModule {
|
||||
|
||||
protected void TestClass( Class clz )
|
||||
protected void testClassExistence( Class<?> clz )
|
||||
{
|
||||
clz.isInstance(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public abstract void Init() throws Throwable;
|
||||
public abstract void init() throws Throwable;
|
||||
|
||||
@Override
|
||||
public abstract void PostInit();
|
||||
public abstract void postInit();
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user