mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
0.0.7.0!
This commit is contained in:
parent
dbd0b453dc
commit
24dccfe219
5 changed files with 7 additions and 6 deletions
|
@ -18,7 +18,7 @@ buildscript {
|
||||||
apply plugin: 'forge'
|
apply plugin: 'forge'
|
||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
|
|
||||||
version = "1.7.10-0.0.6.5"
|
version = "1.7.10-0.0.7.0"
|
||||||
group = "ellpeck.actuallyadditions"
|
group = "ellpeck.actuallyadditions"
|
||||||
archivesBaseName = "ActuallyAdditions"
|
archivesBaseName = "ActuallyAdditions"
|
||||||
|
|
||||||
|
|
|
@ -58,9 +58,10 @@ public class ItemCrafting{
|
||||||
//Tele Staff
|
//Tele Staff
|
||||||
if(ConfigCrafting.TELE_STAFF.isEnabled())
|
if(ConfigCrafting.TELE_STAFF.isEnabled())
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemTeleStaff),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitItems.itemTeleStaff),
|
||||||
" E", " S ", "S ",
|
" E", " S ", "SB ",
|
||||||
'E', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal()),
|
'E', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal()),
|
||||||
'S', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal())));
|
'S', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDER_CASING.ordinal()),
|
||||||
|
'B', new ItemStack(InitItems.itemBattery)));
|
||||||
|
|
||||||
//Drill Speed
|
//Drill Speed
|
||||||
if(ConfigCrafting.DRILL_SPEED.isEnabled()){
|
if(ConfigCrafting.DRILL_SPEED.isEnabled()){
|
||||||
|
|
|
@ -5,7 +5,7 @@ import org.apache.logging.log4j.Logger;
|
||||||
|
|
||||||
public class ModUtil{
|
public class ModUtil{
|
||||||
|
|
||||||
public static final String VERSION = "1.7.10-0.0.6.5";
|
public static final String VERSION = "1.7.10-0.0.7.0";
|
||||||
|
|
||||||
public static final String MOD_ID = "ActuallyAdditions";
|
public static final String MOD_ID = "ActuallyAdditions";
|
||||||
public static final String NAME = "Actually Additions";
|
public static final String NAME = "Actually Additions";
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Fixed the Drill Silk Touching not working, Phantomface Particles, unused Block! :D
|
Lamp Controller, Teleport Staff! \o/
|
|
@ -1 +1 @@
|
||||||
1.7.10-0.0.6.5
|
1.7.10-0.0.7.0
|
Loading…
Reference in a new issue