mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
Made Buildcraft Oil always get used if BC is loaded, changed some little crafting stuff, updated Forge
This commit is contained in:
parent
a622690939
commit
494628481b
3 changed files with 4 additions and 5 deletions
|
@ -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"
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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()),
|
||||
|
|
Loading…
Reference in a new issue