mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
r5
I'm sorry.
This commit is contained in:
parent
0259e52fa1
commit
a3b98937e8
6 changed files with 17 additions and 9 deletions
|
@ -18,7 +18,7 @@ buildscript {
|
||||||
apply plugin: 'forge'
|
apply plugin: 'forge'
|
||||||
apply plugin: 'maven'
|
apply plugin: 'maven'
|
||||||
|
|
||||||
version = "1.7.10-r4"
|
version = "1.7.10-r5"
|
||||||
group = "ellpeck.actuallyadditions"
|
group = "ellpeck.actuallyadditions"
|
||||||
archivesBaseName = "ActuallyAdditions"
|
archivesBaseName = "ActuallyAdditions"
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
|
@ -17,7 +17,7 @@ import java.util.Locale;
|
||||||
|
|
||||||
public class ModUtil{
|
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 MOD_ID = "ActuallyAdditions";
|
||||||
public static final String NAME = "Actually Additions";
|
public static final String NAME = "Actually Additions";
|
||||||
|
|
|
@ -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
|
# 1.7.10-r4
|
||||||
- Fixed the Drill not being able to mine Obsidian correctly when its harvest level was set higher than 4
|
- Fixed the Drill not being able to mine Obsidian correctly when its harvest level was set higher than 4
|
||||||
- AtomSponge Smiley Cloud
|
- AtomSponge Smiley Cloud
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
1.7.10-r4
|
1.7.10-r5
|
Loading…
Reference in a new issue