mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
0.0.8.1!
This commit is contained in:
parent
f7c5e8d6ff
commit
9484d4c1aa
6 changed files with 12 additions and 4 deletions
|
@ -18,7 +18,7 @@ buildscript {
|
|||
apply plugin: 'forge'
|
||||
apply plugin: 'maven'
|
||||
|
||||
version = "1.7.10-0.0.8.0"
|
||||
version = "1.7.10-0.0.8.1"
|
||||
group = "ellpeck.actuallyadditions"
|
||||
archivesBaseName = "ActuallyAdditions"
|
||||
|
||||
|
|
|
@ -5,6 +5,7 @@ import ellpeck.actuallyadditions.config.ConfigCategories;
|
|||
public enum ConfigCrafting{
|
||||
|
||||
COMPOST("Compost", ConfigCategories.BLOCKS_CRAFTING),
|
||||
CLOUD("Smiley Cloud", ConfigCategories.BLOCKS_CRAFTING),
|
||||
XP_SOLIDIFIER("Experience Solidifier", ConfigCategories.BLOCKS_CRAFTING),
|
||||
WOOD_CASING("Wood Casing", ConfigCategories.BLOCKS_CRAFTING),
|
||||
STONE_CASING("Stone Casing", ConfigCategories.BLOCKS_CRAFTING),
|
||||
|
|
|
@ -19,6 +19,13 @@ public class BlockCrafting{
|
|||
|
||||
public static void init(){
|
||||
|
||||
//Smiley Cloud
|
||||
if(ConfigCrafting.CLOUD.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockSmileyCloud),
|
||||
" W ", "WXW", " W ",
|
||||
'W', new ItemStack(Blocks.wool, 1, Util.WILDCARD),
|
||||
'X', new ItemStack(InitItems.itemSpecialDrop, 1, TheSpecialDrops.SOLIDIFIED_EXPERIENCE.ordinal())));
|
||||
|
||||
//Compost
|
||||
if(ConfigCrafting.COMPOST.isEnabled())
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockCompost),
|
||||
|
|
|
@ -5,7 +5,7 @@ import org.apache.logging.log4j.Logger;
|
|||
|
||||
public class ModUtil{
|
||||
|
||||
public static final String VERSION = "1.7.10-0.0.8.0";
|
||||
public static final String VERSION = "1.7.10-0.0.8.1";
|
||||
|
||||
public static final String MOD_ID = "ActuallyAdditions";
|
||||
public static final String NAME = "Actually Additions";
|
||||
|
|
|
@ -1 +1 @@
|
|||
Added a bunch of awesome Rings & Magnetic Miner
|
||||
Lots of Fixes, Smiley Clouds!
|
|
@ -1 +1 @@
|
|||
1.7.10-0.0.8.0
|
||||
1.7.10-0.0.8.1
|
Loading…
Reference in a new issue