Add CraftTweaker support (#3231)

This commit is contained in:
fscan
2017-11-22 21:09:26 +01:00
committed by GitHub
parent 90c17c09a8
commit 959672dae3
12 changed files with 734 additions and 2 deletions
@@ -47,13 +47,16 @@ public enum IntegrationRegistry
this.modules.add( new IntegrationNode( type.dspName, type.modID, type ) );
}
public void init()
public void preInit()
{
for( final IntegrationNode node : this.modules )
{
node.call( IntegrationStage.PRE_INIT );
}
}
public void init()
{
for( final IntegrationNode node : this.modules )
{
node.call( IntegrationStage.INIT );