Squashed commit of the following:

commit 73a56e617debf4e47665ab454f443820b3b00c66
Author: Giovanni Harting <539@idlegandalf.com>
Date:   Fri May 27 16:07:58 2016 +0200

    removed IMCs because there are not needed anymore

commit 7e241adc9384d0b23e3178b5e0367b7b9130a081
Author: Giovanni Harting <539@idlegandalf.com>
Date:   Fri May 27 13:54:03 2016 +0200

    updated mappings to stable_24
    added a updated tinker (mappings)
This commit is contained in:
2016-05-27 16:10:46 +02:00
parent c6d90c67f3
commit a0666590da
5 changed files with 7 additions and 21 deletions

View File

@@ -24,18 +24,6 @@ public class Utils {
System.out.println(String.format("Registered: %s", block));
}
public static void registerTinkerFluid(String oreDictSuffix, Fluid fluid, boolean toolForge) {
System.out.println(String.format("Register TinkerFluid with oreDictSuffix: %s", oreDictSuffix));
registerFluid(fluid);
NBTTagCompound tag = new NBTTagCompound();
tag.setString("fluid", fluid.getName());
tag.setString("ore", oreDictSuffix);
tag.setBoolean("toolforge", toolForge);
FMLInterModComms.sendMessage("tconstruct", "integrateSmeltery", tag);
}
public static void registerFluid(Fluid fluid) {
FluidRegistry.registerFluid(fluid);
FluidRegistry.addBucketForFluid(fluid);