Skip to content

Commit

Permalink
More talky talky
Browse files Browse the repository at this point in the history
  • Loading branch information
mDiyo committed Sep 9, 2013
1 parent 856b313 commit 20cbb58
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions src/tconstruct/TConstruct.java
Expand Up @@ -60,18 +60,29 @@ public TConstruct()
if (Loader.isModLoaded("Natura"))
{
System.out.println("[TConstruct] Natura, what are we going to do tomorrow night?");
System.out.println("[Natura] TConstruct, we're going to take over the world!");
/*System.out.println("[TConstruct] They're Pinky, they're Pinky and");
System.out.println("[Natura] the Brain Brain Brain Brain Brain~");*/
if (Loader.isModLoaded("ChaoticBastion"))
{
System.out.println("[Natura] TConstruct, we're going to...");
System.out.println("[ChaoticBastion] All your base are belong to us!");

}
else
System.out.println("[Natura] TConstruct, we're going to take over the world!");
}
else
{
System.out.println("[TConstruct] Preparing to take over the world");
if (Loader.isModLoaded("ChaoticBastion"))
{
System.out.println("[TConstruct] Preparing to...");
System.out.println("[ChaoticBastion] I'MA FIRING MY LAZOR!");
}
else
System.out.println("[TConstruct] Preparing to take over the world");
}
}

@EventHandler
public void preInit (FMLPreInitializationEvent event)
public void preInit(FMLPreInitializationEvent event)
{
PHConstruct.initProps(event.getModConfigurationDirectory());
TConstructRegistry.materialTab = new TabTools("TConstructMaterials");
Expand Down Expand Up @@ -116,7 +127,7 @@ public void preInit (FMLPreInitializationEvent event)
}

@EventHandler
public void init (FMLInitializationEvent event)
public void init(FMLInitializationEvent event)
{
if (event.getSide() == Side.CLIENT)
{
Expand All @@ -128,7 +139,7 @@ public void init (FMLInitializationEvent event)
}

@EventHandler
public void postInit (FMLPostInitializationEvent evt)
public void postInit(FMLPostInitializationEvent evt)
{
Behavior.registerBuiltInBehaviors();
SpecialStackHandler.registerBuiltInStackHandlers();
Expand All @@ -138,17 +149,17 @@ public void postInit (FMLPostInitializationEvent evt)
content.modRecipes();
}

public static LiquidCasting getTableCasting ()
public static LiquidCasting getTableCasting()
{
return tableCasting;
}

public static LiquidCasting getBasinCasting ()
public static LiquidCasting getBasinCasting()
{
return basinCasting;
}

public static Detailing getChiselDetailing ()
public static Detailing getChiselDetailing()
{
return chiselDetailing;
}
Expand Down

0 comments on commit 20cbb58

Please sign in to comment.