This commit is contained in:
Ellpeck 2015-11-11 22:10:29 +01:00
parent ea9aee28db
commit 3407b401a6
6 changed files with 20 additions and 9 deletions

View file

@ -18,7 +18,7 @@ buildscript {
apply plugin: 'forge' apply plugin: 'forge'
apply plugin: 'maven' apply plugin: 'maven'
version = "1.7.10-r3" version = "1.7.10-r4"
group = "ellpeck.actuallyadditions" group = "ellpeck.actuallyadditions"
archivesBaseName = "ActuallyAdditions" archivesBaseName = "ActuallyAdditions"

View file

@ -101,13 +101,13 @@ public class InitBlocks{
public static Block blockLaserRelay; public static Block blockLaserRelay;
public static Block blockBlackLotus; public static Block blockBlackLotus;
public static Block blockCrystal; //public static Block blockCrystal;
public static void init(){ public static void init(){
ModUtil.LOGGER.info("Initializing Blocks..."); ModUtil.LOGGER.info("Initializing Blocks...");
blockCrystal = new BlockCrystal(); //blockCrystal = new BlockCrystal();
BlockUtil.register(blockCrystal, BlockCrystal.TheItemBlock.class); //BlockUtil.register(blockCrystal, BlockCrystal.TheItemBlock.class);
blockBlackLotus = new BlockBlackLotus(); blockBlackLotus = new BlockBlackLotus();
BlockUtil.register(blockBlackLotus); BlockUtil.register(blockBlackLotus);

View file

@ -128,13 +128,13 @@ public class InitItems{
public static Item itemChestToCrateUpgrade; public static Item itemChestToCrateUpgrade;
public static Item itemLaserWrench; public static Item itemLaserWrench;
public static Item itemCrystal; //public static Item itemCrystal;
public static void init(){ public static void init(){
ModUtil.LOGGER.info("Initializing Items..."); ModUtil.LOGGER.info("Initializing Items...");
itemCrystal = new ItemCrystal(); //itemCrystal = new ItemCrystal();
ItemUtil.register(itemCrystal); //ItemUtil.register(itemCrystal);
itemLaserWrench = new ItemLaserWrench(); itemLaserWrench = new ItemLaserWrench();
ItemUtil.register(itemLaserWrench); ItemUtil.register(itemLaserWrench);

View file

@ -17,7 +17,7 @@ import java.util.Locale;
public class ModUtil{ public class ModUtil{
public static final String VERSION = "1.7.10-r3"; public static final String VERSION = "1.7.10-r4";
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";

View file

@ -1,3 +1,14 @@
# 1.7.10-r4
- Fixed the Drill not being able to mine Obsidian correctly when its harvest level was set higher than 4
- AtomSponge Smiley Cloud
- TB Stairs, Walls, Slabs and Blocks. Unused as of yet, however you can craft and build with them.
- Moved Villager Registring to PostInit to prevent OreDictionary derpups with items getting changed
- Drill + Torches = Instant 3x3 Mining? Nope!
- Misc Crusher Recipes
- Booklet Word and Character Counter to the booklet. Doesn't do anything, it's just kinda fun
- Update Smiley Cloud Easter Eggs
- Hopefully fixed Laser Relay Connections sometimes breaking when quitting a world or server
# 1.7.10-r3 # 1.7.10-r3
- Fixed the Heat Collector not outputting power if its internal buffer is full - Fixed the Heat Collector not outputting power if its internal buffer is full
- Fixed Crash when the manual was open during a world crash or kick - Fixed Crash when the manual was open during a world crash or kick

View file

@ -1 +1 @@
1.7.10-r3 1.7.10-r4