Version 0.0.6.3! & Crafting Recipes for Lamps

This commit is contained in:
Ellpeck 2015-07-02 01:39:15 +02:00
parent cdcf20845b
commit 1e5c26879e
6 changed files with 17 additions and 5 deletions

View file

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

View file

@ -106,7 +106,8 @@ public enum ConfigCrafting{
ENERGIZER("Energizer", ConfigCategories.BLOCKS_CRAFTING),
ENERVATOR("Enervator", ConfigCategories.BLOCKS_CRAFTING),
QUARTZ("Black Quartz in a Crafting Table (as a Backup if there's no Ores to be found anywhere)", ConfigCategories.ITEMS_CRAFTING);
QUARTZ("Black Quartz in a Crafting Table (as a Backup if there's no Ores to be found anywhere)", ConfigCategories.ITEMS_CRAFTING),
LAMPS("Lamps", ConfigCategories.BLOCKS_CRAFTING);
public final String name;
public final String category;

View file

@ -1,6 +1,7 @@
package ellpeck.actuallyadditions.crafting;
import cpw.mods.fml.common.registry.GameRegistry;
import ellpeck.actuallyadditions.blocks.BlockColoredLamp;
import ellpeck.actuallyadditions.blocks.InitBlocks;
import ellpeck.actuallyadditions.blocks.metalists.TheMiscBlocks;
import ellpeck.actuallyadditions.config.values.ConfigCrafting;
@ -339,6 +340,16 @@ public class BlockCrafting{
'D', Blocks.dropper,
'R', TheMiscItems.COIL_ADVANCED.getOredictName()));
if(ConfigCrafting.LAMPS.isEnabled()){
for(int i = 0; i < BlockColoredLamp.allLampTypes.length; i++){
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockColoredLamp, 6, i),
"GGG", "DQD", "GGG",
'G', "glowstone",
'D', "dye"+BlockColoredLamp.allLampTypes[i].name,
'Q', TheMiscItems.QUARTZ.getOredictName()));
}
}
}
}

View file

@ -5,7 +5,7 @@ import org.apache.logging.log4j.Logger;
public class ModUtil{
public static final String VERSION = "1.7.10-0.0.6.2";
public static final String VERSION = "1.7.10-0.0.6.3";
public static final String MOD_ID = "ActuallyAdditions";
public static final String NAME = "Actually Additions";

View file

@ -1 +1 @@
Really Important Fix for the Drill!
LAMPS! and major and minor tweaks and changes, lots of bugs fixed

View file

@ -1 +1 @@
1.7.10-0.0.6.2
1.7.10-0.0.6.3