mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
r4!
This commit is contained in:
parent
ea9aee28db
commit
3407b401a6
6 changed files with 20 additions and 9 deletions
|
@ -18,7 +18,7 @@ buildscript {
|
|||
apply plugin: 'forge'
|
||||
apply plugin: 'maven'
|
||||
|
||||
version = "1.7.10-r3"
|
||||
version = "1.7.10-r4"
|
||||
group = "ellpeck.actuallyadditions"
|
||||
archivesBaseName = "ActuallyAdditions"
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -17,7 +17,7 @@ import java.util.Locale;
|
|||
|
||||
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 NAME = "Actually Additions";
|
||||
|
|
|
@ -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
|
||||
- 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
|
||||
|
|
|
@ -1 +1 @@
|
|||
1.7.10-r3
|
||||
1.7.10-r4
|
Loading…
Reference in a new issue