Made Buildcraft Oil always get used if BC is loaded, changed some little crafting stuff, updated Forge

This commit is contained in:
Ellpeck 2015-08-03 09:01:13 +02:00
parent a622690939
commit 494628481b
3 changed files with 4 additions and 5 deletions

View file

@ -23,7 +23,7 @@ group = "ellpeck.actuallyadditions"
archivesBaseName = "ActuallyAdditions"
minecraft {
version = "1.7.10-10.13.4.1448-1.7.10"
version = "1.7.10-10.13.4.1492-1.7.10"
runDir = "idea"
}

View file

@ -32,8 +32,8 @@ import ellpeck.actuallyadditions.recipe.TreasureChestHandler;
import ellpeck.actuallyadditions.tile.TileEntityBase;
import ellpeck.actuallyadditions.util.ModUtil;
import ellpeck.actuallyadditions.util.Util;
@Mod(modid = ModUtil.MOD_ID, name = ModUtil.NAME, version = ModUtil.VERSION, canBeDeactivated = false, guiFactory = "ellpeck.actuallyadditions.config.GuiFactory")
// So that BuildCraft Oil always gets used
@Mod(modid = ModUtil.MOD_ID, name = ModUtil.NAME, version = ModUtil.VERSION, dependencies = "after:BuildCraft|Energy", canBeDeactivated = false, guiFactory = "ellpeck.actuallyadditions.config.GuiFactory")
public class ActuallyAdditions{
@Instance(ModUtil.MOD_ID)

View file

@ -278,8 +278,7 @@ public class ItemCrafting{
if(ConfigCrafting.STICK_CRAFTER.isEnabled())
GameRegistry.addRecipe(new ShapelessOreRecipe(new ItemStack(InitItems.itemCrafterOnAStick),
new ItemStack(Blocks.crafting_table),
new ItemStack(Items.sign),
"slimeball"));
new ItemStack(Items.sign)));
//Tiny Coal
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemMisc, 8, TheMiscItems.TINY_COAL.ordinal()),