I'm sorry.
This commit is contained in:
Ellpeck 2015-11-12 20:11:27 +01:00
parent 0259e52fa1
commit a3b98937e8
6 changed files with 17 additions and 9 deletions

View file

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

View file

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

View file

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

View file

@ -17,7 +17,7 @@ import java.util.Locale;
public class ModUtil{
public static final String VERSION = "1.7.10-r4";
public static final String VERSION = "1.7.10-r5";
public static final String MOD_ID = "ActuallyAdditions";
public static final String NAME = "Actually Additions";

View file

@ -1,3 +1,11 @@
# 1.7.10-r5
- Fixed some unnecessary performance use when transfering power with laser relays
- Fixed Laser Relays disconnecting themselves when
-they're not edited the entire time a world is loaded
-a world is loaded wrongly
-a player leaves an area on servers sometimes
- //Sorry for this update, it's a really important fix though//
# 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

View file

@ -1 +1 @@
1.7.10-r4
1.7.10-r5