mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
missing recipe
This commit is contained in:
parent
12badf2bdd
commit
94484fe91e
@ -14,7 +14,7 @@
|
|||||||
* A cheap tier 1 missile that shows up on radar screens as tier 4 (eg. nuclear) missiles
|
* A cheap tier 1 missile that shows up on radar screens as tier 4 (eg. nuclear) missiles
|
||||||
* Printing press stamps
|
* Printing press stamps
|
||||||
* 8 different stamps for printing certain pages
|
* 8 different stamps for printing certain pages
|
||||||
* If a meteor dungeon safe is generated without a black book inside, it will generate tow random stamps instead
|
* If a meteor dungeon safe is generated without a black book inside, it will generate two random stamps instead
|
||||||
* With all 8 stamps, allows you to print your own black book
|
* With all 8 stamps, allows you to print your own black book
|
||||||
|
|
||||||
## Changed
|
## Changed
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
mod_version=1.0.27
|
mod_version=1.0.27
|
||||||
# Empty build number makes a release type
|
# Empty build number makes a release type
|
||||||
mod_build_number=4795
|
mod_build_number=4809
|
||||||
|
|
||||||
credits=HbMinecraft, rodolphito (explosion algorithms), grangerave (explosion algorithms),\
|
credits=HbMinecraft, rodolphito (explosion algorithms), grangerave (explosion algorithms),\
|
||||||
\ Hoboy (textures, models), Doctor17 (russian localization), Drillgon200 (effects, models,\
|
\ Hoboy (textures, models), Doctor17 (russian localization), Drillgon200 (effects, models,\
|
||||||
|
|||||||
@ -3,7 +3,7 @@ package com.hbm.lib;
|
|||||||
public class RefStrings {
|
public class RefStrings {
|
||||||
public static final String MODID = "hbm";
|
public static final String MODID = "hbm";
|
||||||
public static final String NAME = "Hbm's Nuclear Tech Mod";
|
public static final String NAME = "Hbm's Nuclear Tech Mod";
|
||||||
public static final String VERSION = "1.0.27 BETA (4795)";
|
public static final String VERSION = "1.0.27 BETA (4809)";
|
||||||
//HBM's Beta Naming Convention:
|
//HBM's Beta Naming Convention:
|
||||||
//V T (X)
|
//V T (X)
|
||||||
//V -> next release version
|
//V -> next release version
|
||||||
|
|||||||
@ -22,6 +22,7 @@ import com.hbm.items.ModItems;
|
|||||||
import com.hbm.items.ItemAmmoEnums.Ammo50BMG;
|
import com.hbm.items.ItemAmmoEnums.Ammo50BMG;
|
||||||
import com.hbm.items.ItemAmmoEnums.Ammo5mm;
|
import com.hbm.items.ItemAmmoEnums.Ammo5mm;
|
||||||
import com.hbm.items.ItemEnums.EnumLegendaryType;
|
import com.hbm.items.ItemEnums.EnumLegendaryType;
|
||||||
|
import com.hbm.items.ItemEnums.EnumPages;
|
||||||
import com.hbm.items.ItemEnums.EnumPlantType;
|
import com.hbm.items.ItemEnums.EnumPlantType;
|
||||||
import com.hbm.items.ItemGenericPart.EnumPartType;
|
import com.hbm.items.ItemGenericPart.EnumPartType;
|
||||||
import com.hbm.items.food.ItemConserve.EnumFoodType;
|
import com.hbm.items.food.ItemConserve.EnumFoodType;
|
||||||
@ -1053,6 +1054,8 @@ public class CraftingManager {
|
|||||||
|
|
||||||
addShapelessAuto(new ItemStack(ModItems.bdcl), new Object[] { ANY_TAR.any(), Fluids.WATER.getDict(1_000), KEY_WHITE });
|
addShapelessAuto(new ItemStack(ModItems.bdcl), new Object[] { ANY_TAR.any(), Fluids.WATER.getDict(1_000), KEY_WHITE });
|
||||||
|
|
||||||
|
addShapelessAuto(new ItemStack(ModItems.book_of_), new Object[] { DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE1), DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE2), DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE3), DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE4), DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE5), DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE6), DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE7), DictFrame.fromOne(ModItems.page_of_, EnumPages.PAGE8), ModItems.egg_balefire });
|
||||||
|
|
||||||
if(GeneralConfig.enableLBSM && GeneralConfig.enableLBSMSimpleCrafting) {
|
if(GeneralConfig.enableLBSM && GeneralConfig.enableLBSMSimpleCrafting) {
|
||||||
addShapelessAuto(new ItemStack(ModItems.cordite, 3), new Object[] { ModItems.ballistite, Items.gunpowder, new ItemStack(Blocks.wool, 1, OreDictionary.WILDCARD_VALUE) });
|
addShapelessAuto(new ItemStack(ModItems.cordite, 3), new Object[] { ModItems.ballistite, Items.gunpowder, new ItemStack(Blocks.wool, 1, OreDictionary.WILDCARD_VALUE) });
|
||||||
addShapelessAuto(new ItemStack(ModItems.ingot_semtex, 3), new Object[] { Items.slime_ball, Blocks.tnt, KNO.dust() });
|
addShapelessAuto(new ItemStack(ModItems.ingot_semtex, 3), new Object[] { Items.slime_ball, Blocks.tnt, KNO.dust() });
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user