mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-08-10 17:55:44 +00:00
out with the old
This commit is contained in:
parent
98c5cb802a
commit
804d2bd188
@ -10,6 +10,8 @@
|
|||||||
* Updated russian and chinese localization
|
* Updated russian and chinese localization
|
||||||
* AUTOCAL's `first` and `last` instructions now support variable substitution
|
* AUTOCAL's `first` and `last` instructions now support variable substitution
|
||||||
* Spy satellites now have the `getsmog` command, checking for soot pollution on the current target coordinate
|
* Spy satellites now have the `getsmog` command, checking for soot pollution on the current target coordinate
|
||||||
|
* The research reactor and breeding reactor have been deprecated
|
||||||
|
* The reactors and the plate fuel no longer have recipes, but existing ones will continue to function until they run out of fuel
|
||||||
|
|
||||||
## Fixed
|
## Fixed
|
||||||
* Fixed pile fuel loader temperature reading not working
|
* Fixed pile fuel loader temperature reading not working
|
||||||
@ -20,3 +22,5 @@
|
|||||||
* Fixed a potential crash caused by accessing out-of-range data on the radar satellite
|
* Fixed a potential crash caused by accessing out-of-range data on the radar satellite
|
||||||
* Fixed QMAW manual pages not being able to be overwritten by resource packs
|
* Fixed QMAW manual pages not being able to be overwritten by resource packs
|
||||||
* This feature was a major pain in the ass to actually make, and it apparently never even worked until now
|
* This feature was a major pain in the ass to actually make, and it apparently never even worked until now
|
||||||
|
* Fixed satellite groundstation losing its frequency on relog
|
||||||
|
* Added extra safeguarding preventing crashes caused by multiblock door tile entities not bound to the correct block
|
||||||
@ -1,130 +0,0 @@
|
|||||||
package com.hbm.handler.nei;
|
|
||||||
|
|
||||||
import java.awt.Rectangle;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Map;
|
|
||||||
|
|
||||||
import com.hbm.blocks.ModBlocks;
|
|
||||||
import com.hbm.handler.imc.ICompatNHNEI;
|
|
||||||
import com.hbm.inventory.gui.GUIMachineReactorBreeding;
|
|
||||||
import com.hbm.inventory.recipes.BreederRecipes;
|
|
||||||
import com.hbm.inventory.recipes.BreederRecipes.BreederRecipe;
|
|
||||||
|
|
||||||
import codechicken.lib.gui.GuiDraw;
|
|
||||||
import codechicken.nei.NEIServerUtils;
|
|
||||||
import codechicken.nei.PositionedStack;
|
|
||||||
import codechicken.nei.recipe.TemplateRecipeHandler;
|
|
||||||
import net.minecraft.client.gui.inventory.GuiContainer;
|
|
||||||
import net.minecraft.item.ItemStack;
|
|
||||||
|
|
||||||
public class BreederRecipeHandler extends TemplateRecipeHandler implements ICompatNHNEI {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public ItemStack[] getMachinesForRecipe() {
|
|
||||||
return new ItemStack[]{
|
|
||||||
new ItemStack(ModBlocks.machine_reactor_breeding)};
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getRecipeID() {
|
|
||||||
return "breeding";
|
|
||||||
}
|
|
||||||
public class BreedingSet extends TemplateRecipeHandler.CachedRecipe {
|
|
||||||
|
|
||||||
PositionedStack input;
|
|
||||||
PositionedStack result;
|
|
||||||
public int flux;
|
|
||||||
|
|
||||||
public BreedingSet(ItemStack input, ItemStack result, int flux) {
|
|
||||||
input.stackSize = 1;
|
|
||||||
this.input = new PositionedStack(input, 30, 24);
|
|
||||||
this.result = new PositionedStack(result, 120, 24);
|
|
||||||
this.flux = flux;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<PositionedStack> getIngredients() {
|
|
||||||
return getCycledIngredients(cycleticks / 48, Arrays.asList(new PositionedStack[] { input }));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public PositionedStack getResult() {
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getRecipeName() {
|
|
||||||
return "Breeding Reactor";
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String getGuiTexture() {
|
|
||||||
return GUIMachineReactorBreeding.texture.toString();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void loadCraftingRecipes(String outputId, Object... results) {
|
|
||||||
|
|
||||||
if((outputId.equals("breeding")) && getClass() == BreederRecipeHandler.class) {
|
|
||||||
|
|
||||||
Map<ItemStack, BreederRecipe> recipes = BreederRecipes.getAllRecipes();
|
|
||||||
|
|
||||||
for(Map.Entry<ItemStack, BreederRecipe> recipe : recipes.entrySet()) {
|
|
||||||
this.arecipes.add(new BreedingSet(recipe.getKey(), recipe.getValue().output, recipe.getValue().flux));
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
super.loadCraftingRecipes(outputId, results);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void loadCraftingRecipes(ItemStack result) {
|
|
||||||
|
|
||||||
Map<ItemStack, BreederRecipe> recipes = BreederRecipes.getAllRecipes();
|
|
||||||
|
|
||||||
for(Map.Entry<ItemStack, BreederRecipe> recipe : recipes.entrySet()) {
|
|
||||||
if(NEIServerUtils.areStacksSameType(recipe.getValue().output, result))
|
|
||||||
this.arecipes.add(new BreedingSet(recipe.getKey(), recipe.getValue().output, recipe.getValue().flux));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void loadUsageRecipes(String inputId, Object... ingredients) {
|
|
||||||
if((inputId.equals("breeding")) && getClass() == BreederRecipeHandler.class) {
|
|
||||||
loadCraftingRecipes("breeding", new Object[0]);
|
|
||||||
} else {
|
|
||||||
super.loadUsageRecipes(inputId, ingredients);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void loadUsageRecipes(ItemStack ingredient) {
|
|
||||||
|
|
||||||
Map<ItemStack, BreederRecipe> recipes = BreederRecipes.getAllRecipes();
|
|
||||||
|
|
||||||
for(Map.Entry<ItemStack, BreederRecipe> recipe : recipes.entrySet()) {
|
|
||||||
if(NEIServerUtils.areStacksSameType(ingredient, (ItemStack) recipe.getKey()))
|
|
||||||
this.arecipes.add(new BreedingSet(recipe.getKey(), recipe.getValue().output, recipe.getValue().flux));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Class<? extends GuiContainer> getGuiClass() {
|
|
||||||
return GUIMachineReactorBreeding.class;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void loadTransferRects() {
|
|
||||||
transferRects.add(new RecipeTransferRect(new Rectangle(68, 9, 30, 37), "breeding"));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void drawExtras(int recipe) {
|
|
||||||
drawProgressBar(48, 21, 176, 0, 70, 20, 50, 0);
|
|
||||||
|
|
||||||
String flux = ((BreedingSet) this.arecipes.get(recipe)).flux + "";
|
|
||||||
GuiDraw.drawString(flux, 83 - GuiDraw.fontRenderer.getStringWidth(flux) / 2, 10, 0x08FF00);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -511,12 +511,6 @@ public class AssemblyMachineRecipes extends GenericRecipes<GenericRecipe> {
|
|||||||
.inputItemsEx(new OreDictStack(KEY_PLANKS, 1), new OreDictStack(GRAPHITE.ingot(), 8), new OreDictStack(STEEL.plate(), 1)));
|
.inputItemsEx(new OreDictStack(KEY_PLANKS, 1), new OreDictStack(GRAPHITE.ingot(), 8), new OreDictStack(STEEL.plate(), 1)));
|
||||||
|
|
||||||
// reactors
|
// reactors
|
||||||
this.register(new GenericRecipe("ass.breedingreactor").setup(200, 100).outputItems(new ItemStack(ModBlocks.machine_reactor_breeding, 1))
|
|
||||||
.inputItems(new ComparableStack(ModItems.reactor_core, 1), new OreDictStack(STEEL.ingot(), 12), new OreDictStack(PB.plate(), 16), new ComparableStack(ModBlocks.reinforced_glass, 4), new OreDictStack(ASBESTOS.ingot(), 4), new OreDictStack(ANY_RESISTANTALLOY.ingot(), 4), new ComparableStack(ModItems.crt_display, 1))
|
|
||||||
.inputItemsEx(new ComparableStack(ModItems.item_expensive, 4, EnumExpensiveType.LEAD_PLATING), new ComparableStack(ModItems.reactor_core, 1), new OreDictStack(ASBESTOS.ingot(), 16), new OreDictStack(ANY_RESISTANTALLOY.ingot(), 4), new ComparableStack(ModItems.crt_display, 1)));
|
|
||||||
this.register(new GenericRecipe("ass.researchreactor").setup(200, 100).outputItems(new ItemStack(ModBlocks.reactor_research, 1))
|
|
||||||
.inputItems(new OreDictStack(STEEL.ingot(), 8), new OreDictStack(ANY_RESISTANTALLOY.ingot(), 4), new ComparableStack(ModItems.motor_desh, 2), new OreDictStack(B.ingot(), 5), new OreDictStack(PB.plate(), 8), new ComparableStack(ModItems.crt_display, 3), new ComparableStack(ModItems.circuit, 4, EnumCircuitType.BASIC))
|
|
||||||
.inputItemsEx(new ComparableStack(ModItems.item_expensive, 4, EnumExpensiveType.FERRO_PLATING), new ComparableStack(ModItems.motor_desh, 2), new ComparableStack(ModItems.crt_display, 3), new ComparableStack(ModItems.item_expensive, 2, EnumExpensiveType.CIRCUIT)));
|
|
||||||
this.register(new GenericRecipe("ass.cirnox").setup(600, 100).outputItems(new ItemStack(ModBlocks.reactor_zirnox, 1))
|
this.register(new GenericRecipe("ass.cirnox").setup(600, 100).outputItems(new ItemStack(ModBlocks.reactor_zirnox, 1))
|
||||||
.inputItems(new OreDictStack(STEEL.shell(), 4), new OreDictStack(STEEL.pipe(), 8), new OreDictStack(B.ingot(), 8), new OreDictStack(GRAPHITE.ingot(), 16), new OreDictStack(RUBBER.ingot(), 16), new OreDictStack(ANY_CONCRETE.any(), 16), new ComparableStack(ModItems.circuit, 4, EnumCircuitType.BASIC))
|
.inputItems(new OreDictStack(STEEL.shell(), 4), new OreDictStack(STEEL.pipe(), 8), new OreDictStack(B.ingot(), 8), new OreDictStack(GRAPHITE.ingot(), 16), new OreDictStack(RUBBER.ingot(), 16), new OreDictStack(ANY_CONCRETE.any(), 16), new ComparableStack(ModItems.circuit, 4, EnumCircuitType.BASIC))
|
||||||
.inputItemsEx(new ComparableStack(ModItems.item_expensive, 4, EnumExpensiveType.LEAD_PLATING), new OreDictStack(GRAPHITE.ingot(), 16), new OreDictStack(RUBBER.ingot(), 16), new OreDictStack(ANY_CONCRETE.any(), 16), new ComparableStack(ModItems.item_expensive, 2, EnumExpensiveType.CIRCUIT)));
|
.inputItemsEx(new ComparableStack(ModItems.item_expensive, 4, EnumExpensiveType.LEAD_PLATING), new OreDictStack(GRAPHITE.ingot(), 16), new OreDictStack(RUBBER.ingot(), 16), new OreDictStack(ANY_CONCRETE.any(), 16), new ComparableStack(ModItems.item_expensive, 2, EnumExpensiveType.CIRCUIT)));
|
||||||
|
|||||||
@ -553,14 +553,6 @@ public class AnvilRecipes extends SerializableRecipe {
|
|||||||
new OreDictStack(PU239.billet(), 3)
|
new OreDictStack(PU239.billet(), 3)
|
||||||
}, new AnvilOutput(new ItemStack(ModItems.missile_doomsday))).setTier(5));
|
}, new AnvilOutput(new ItemStack(ModItems.missile_doomsday))).setTier(5));
|
||||||
|
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new ComparableStack(ModItems.ingot_u233, 1), new AnvilOutput(new ItemStack(ModItems.plate_fuel_u233))).setTier(4));
|
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new ComparableStack(ModItems.ingot_u235, 1), new AnvilOutput(new ItemStack(ModItems.plate_fuel_u235))).setTier(4));
|
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new ComparableStack(ModItems.ingot_mox_fuel, 1), new AnvilOutput(new ItemStack(ModItems.plate_fuel_mox))).setTier(4));
|
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new ComparableStack(ModItems.ingot_pu239, 1), new AnvilOutput(new ItemStack(ModItems.plate_fuel_pu239))).setTier(4));
|
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new ComparableStack(ModItems.ingot_schrabidium, 1), new AnvilOutput(new ItemStack(ModItems.plate_fuel_sa326))).setTier(4));
|
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new ComparableStack(ModItems.billet_ra226be, 1), new AnvilOutput(new ItemStack(ModItems.plate_fuel_ra226be))).setTier(4));
|
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new ComparableStack(ModItems.billet_pu238be, 1), new AnvilOutput(new ItemStack(ModItems.plate_fuel_pu238be))).setTier(4));
|
|
||||||
|
|
||||||
for(int i = 0; i < 15; i += 3) {
|
for(int i = 0; i < 15; i += 3) {
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(IRON.plate(), 1), new AnvilOutput(new ItemStack(ModBlocks.fluid_duct_box, 1, i))).setTier(2).setOverlay(OverlayType.CONSTRUCTION));
|
constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(IRON.plate(), 1), new AnvilOutput(new ItemStack(ModBlocks.fluid_duct_box, 1, i))).setTier(2).setOverlay(OverlayType.CONSTRUCTION));
|
||||||
constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(CU.plate(), 1), new AnvilOutput(new ItemStack(ModBlocks.fluid_duct_box, 1, i + 1))).setTier(2).setOverlay(OverlayType.CONSTRUCTION));
|
constructionRecipes.add(new AnvilConstructionRecipe(new OreDictStack(CU.plate(), 1), new AnvilOutput(new ItemStack(ModBlocks.fluid_duct_box, 1, i + 1))).setTier(2).setOverlay(OverlayType.CONSTRUCTION));
|
||||||
|
|||||||
@ -959,13 +959,13 @@ public class ModItems {
|
|||||||
public static Item waste_schrabidium;
|
public static Item waste_schrabidium;
|
||||||
public static Item waste_zfb_mox;
|
public static Item waste_zfb_mox;
|
||||||
|
|
||||||
public static Item waste_plate_u233;
|
@Deprecated public static Item waste_plate_u233;
|
||||||
public static Item waste_plate_u235;
|
@Deprecated public static Item waste_plate_u235;
|
||||||
public static Item waste_plate_mox;
|
@Deprecated public static Item waste_plate_mox;
|
||||||
public static Item waste_plate_pu239;
|
@Deprecated public static Item waste_plate_pu239;
|
||||||
public static Item waste_plate_sa326;
|
@Deprecated public static Item waste_plate_sa326;
|
||||||
public static Item waste_plate_ra226be;
|
@Deprecated public static Item waste_plate_ra226be;
|
||||||
public static Item waste_plate_pu238be;
|
@Deprecated public static Item waste_plate_pu238be;
|
||||||
|
|
||||||
@Deprecated public static Item pile_rod_uranium;
|
@Deprecated public static Item pile_rod_uranium;
|
||||||
@Deprecated public static Item pile_rod_pu239;
|
@Deprecated public static Item pile_rod_pu239;
|
||||||
@ -977,13 +977,13 @@ public class ModItems {
|
|||||||
|
|
||||||
public static Item pile_rod;
|
public static Item pile_rod;
|
||||||
|
|
||||||
public static Item plate_fuel_u233;
|
@Deprecated public static Item plate_fuel_u233;
|
||||||
public static Item plate_fuel_u235;
|
@Deprecated public static Item plate_fuel_u235;
|
||||||
public static Item plate_fuel_mox;
|
@Deprecated public static Item plate_fuel_mox;
|
||||||
public static Item plate_fuel_pu239;
|
@Deprecated public static Item plate_fuel_pu239;
|
||||||
public static Item plate_fuel_sa326;
|
@Deprecated public static Item plate_fuel_sa326;
|
||||||
public static Item plate_fuel_ra226be;
|
@Deprecated public static Item plate_fuel_ra226be;
|
||||||
public static Item plate_fuel_pu238be;
|
@Deprecated public static Item plate_fuel_pu238be;
|
||||||
|
|
||||||
public static Item pwr_fuel;
|
public static Item pwr_fuel;
|
||||||
public static Item pwr_fuel_hot;
|
public static Item pwr_fuel_hot;
|
||||||
@ -2998,13 +2998,13 @@ public class ModItems {
|
|||||||
|
|
||||||
pile_rod = new ItemPileRodMK2().setUnlocalizedName("pile_rod").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":pile_rod");
|
pile_rod = new ItemPileRodMK2().setUnlocalizedName("pile_rod").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":pile_rod");
|
||||||
|
|
||||||
plate_fuel_u233 = new ItemPlateFuel(2200000).setFunction(FunctionEnum.SQUARE_ROOT, 50).setUnlocalizedName("plate_fuel_u233").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":plate_fuel_u233");
|
plate_fuel_u233 = new ItemPlateFuel(2200000).setFunction(FunctionEnum.SQUARE_ROOT, 50).setUnlocalizedName("plate_fuel_u233").setMaxStackSize(1).setCreativeTab(null).setTextureName(RefStrings.MODID + ":plate_fuel_u233");
|
||||||
plate_fuel_u235 = new ItemPlateFuel(2200000).setFunction(FunctionEnum.SQUARE_ROOT, 40).setUnlocalizedName("plate_fuel_u235").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":plate_fuel_u235");
|
plate_fuel_u235 = new ItemPlateFuel(2200000).setFunction(FunctionEnum.SQUARE_ROOT, 40).setUnlocalizedName("plate_fuel_u235").setMaxStackSize(1).setCreativeTab(null).setTextureName(RefStrings.MODID + ":plate_fuel_u235");
|
||||||
plate_fuel_mox = new ItemPlateFuel(2400000).setFunction(FunctionEnum.LOGARITHM, 50).setUnlocalizedName("plate_fuel_mox").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":plate_fuel_mox");
|
plate_fuel_mox = new ItemPlateFuel(2400000).setFunction(FunctionEnum.LOGARITHM, 50).setUnlocalizedName("plate_fuel_mox").setMaxStackSize(1).setCreativeTab(null).setTextureName(RefStrings.MODID + ":plate_fuel_mox");
|
||||||
plate_fuel_pu239 = new ItemPlateFuel(2000000).setFunction(FunctionEnum.NEGATIVE_QUADRATIC, 50).setUnlocalizedName("plate_fuel_pu239").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":plate_fuel_pu239");
|
plate_fuel_pu239 = new ItemPlateFuel(2000000).setFunction(FunctionEnum.NEGATIVE_QUADRATIC, 50).setUnlocalizedName("plate_fuel_pu239").setMaxStackSize(1).setCreativeTab(null).setTextureName(RefStrings.MODID + ":plate_fuel_pu239");
|
||||||
plate_fuel_sa326 = new ItemPlateFuel(2000000).setFunction(FunctionEnum.LINEAR, 80).setUnlocalizedName("plate_fuel_sa326").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":plate_fuel_sa326");
|
plate_fuel_sa326 = new ItemPlateFuel(2000000).setFunction(FunctionEnum.LINEAR, 80).setUnlocalizedName("plate_fuel_sa326").setMaxStackSize(1).setCreativeTab(null).setTextureName(RefStrings.MODID + ":plate_fuel_sa326");
|
||||||
plate_fuel_ra226be = new ItemPlateFuel(1300000).setFunction(FunctionEnum.PASSIVE, 30).setUnlocalizedName("plate_fuel_ra226be").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":plate_fuel_ra226be");
|
plate_fuel_ra226be = new ItemPlateFuel(1300000).setFunction(FunctionEnum.PASSIVE, 30).setUnlocalizedName("plate_fuel_ra226be").setMaxStackSize(1).setCreativeTab(null).setTextureName(RefStrings.MODID + ":plate_fuel_ra226be");
|
||||||
plate_fuel_pu238be = new ItemPlateFuel(1000000).setFunction(FunctionEnum.PASSIVE, 50).setUnlocalizedName("plate_fuel_pu238be").setMaxStackSize(1).setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":plate_fuel_pu238be");
|
plate_fuel_pu238be = new ItemPlateFuel(1000000).setFunction(FunctionEnum.PASSIVE, 50).setUnlocalizedName("plate_fuel_pu238be").setMaxStackSize(1).setCreativeTab(null).setTextureName(RefStrings.MODID + ":plate_fuel_pu238be");
|
||||||
|
|
||||||
pwr_fuel = new ItemPWRFuel().setUnlocalizedName("pwr_fuel").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":pwr_fuel");
|
pwr_fuel = new ItemPWRFuel().setUnlocalizedName("pwr_fuel").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":pwr_fuel");
|
||||||
pwr_fuel_hot = new ItemEnumMulti(EnumPWRFuel.class, true, false).setUnlocalizedName("pwr_fuel_hot").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":pwr_fuel_hot");
|
pwr_fuel_hot = new ItemEnumMulti(EnumPWRFuel.class, true, false).setUnlocalizedName("pwr_fuel_hot").setCreativeTab(MainRegistry.controlTab).setTextureName(RefStrings.MODID + ":pwr_fuel_hot");
|
||||||
|
|||||||
@ -33,7 +33,6 @@ public class NEIRegistry {
|
|||||||
handlers.add(new RefineryRecipeHandler());
|
handlers.add(new RefineryRecipeHandler());
|
||||||
handlers.add(new CentrifugeRecipeHandler());
|
handlers.add(new CentrifugeRecipeHandler());
|
||||||
handlers.add(new GasCentrifugeRecipeHandler());
|
handlers.add(new GasCentrifugeRecipeHandler());
|
||||||
handlers.add(new BreederRecipeHandler());
|
|
||||||
handlers.add(new CyclotronRecipeHandler());
|
handlers.add(new CyclotronRecipeHandler());
|
||||||
handlers.add(new VacuumRecipeHandler());
|
handlers.add(new VacuumRecipeHandler());
|
||||||
handlers.add(new CrackingHandler());
|
handlers.add(new CrackingHandler());
|
||||||
|
|||||||
@ -49,6 +49,11 @@ public class TileEntityDoorGeneric extends TileEntityLockableBase {
|
|||||||
public void updateEntity() {
|
public void updateEntity() {
|
||||||
if(this.getBlockMetadata() < 12) return;
|
if(this.getBlockMetadata() < 12) return;
|
||||||
|
|
||||||
|
if(this.getDoorType() == null) {
|
||||||
|
this.invalidate();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if(getDoorType().onDoorUpdate() != null) {
|
if(getDoorType().onDoorUpdate() != null) {
|
||||||
getDoorType().onDoorUpdate().accept(this);
|
getDoorType().onDoorUpdate().accept(this);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -85,7 +85,7 @@ public class TileEntityMachineSatLink extends TileEntityTickingBase implements I
|
|||||||
@Override
|
@Override
|
||||||
public void writeToNBT(NBTTagCompound nbt) {
|
public void writeToNBT(NBTTagCompound nbt) {
|
||||||
super.writeToNBT(nbt);
|
super.writeToNBT(nbt);
|
||||||
nbt.setInteger("power", freq);
|
nbt.setInteger("freq", freq);
|
||||||
}
|
}
|
||||||
|
|
||||||
AxisAlignedBB bb = null;
|
AxisAlignedBB bb = null;
|
||||||
|
|||||||
@ -3303,6 +3303,7 @@ item.satellite.miner_astro.name=Asteroiden-Förderschiff
|
|||||||
item.satellite.miner_lunar.name=Mond-Förderschiff
|
item.satellite.miner_lunar.name=Mond-Förderschiff
|
||||||
item.satellite.precision_laser.name=Orbitaler Präzisionslaser
|
item.satellite.precision_laser.name=Orbitaler Präzisionslaser
|
||||||
item.satellite.radar.name=Radar-Überwachungssatellit
|
item.satellite.radar.name=Radar-Überwachungssatellit
|
||||||
|
item.satellite.ray_scan.name=Schmalband-Emissionsscan-Satellit
|
||||||
item.satellite.relay.name=Relais-Satellit
|
item.satellite.relay.name=Relais-Satellit
|
||||||
item.satellite.scanner.name=Tiefenscan-Satellit
|
item.satellite.scanner.name=Tiefenscan-Satellit
|
||||||
item.satellite.spy.name=Spionagesatellit
|
item.satellite.spy.name=Spionagesatellit
|
||||||
@ -4533,9 +4534,8 @@ tile.machine_pyrooven.name=Pyrolyseofen
|
|||||||
tile.machine_radar.name=Radar
|
tile.machine_radar.name=Radar
|
||||||
tile.machine_radar_large.name=Großes Radar
|
tile.machine_radar_large.name=Großes Radar
|
||||||
tile.machine_radgen.name=Strahlenbetriebener Generator
|
tile.machine_radgen.name=Strahlenbetriebener Generator
|
||||||
tile.machine_reactor.name=Brutreaktor
|
tile.machine_reactor.name=Brutreaktor (LEGACY)
|
||||||
tile.machine_reactor_on.name=Brutreaktor
|
tile.machine_reactor_small.name=Atomreaktor (LEGACY)
|
||||||
tile.machine_reactor_small.name=Atomreaktor
|
|
||||||
tile.machine_refinery.name=Ölraffinerie
|
tile.machine_refinery.name=Ölraffinerie
|
||||||
tile.machine_reix_mainframe.name=Rei-X Hauptrechner (WIP)
|
tile.machine_reix_mainframe.name=Rei-X Hauptrechner (WIP)
|
||||||
tile.machine_rotary_furnace.name=Rotationshochofen
|
tile.machine_rotary_furnace.name=Rotationshochofen
|
||||||
|
|||||||
@ -5821,8 +5821,8 @@ tile.machine_radar.name=Radar
|
|||||||
tile.machine_radar_large.name=Large Radar
|
tile.machine_radar_large.name=Large Radar
|
||||||
tile.machine_radgen.name=Radiation-Powered Engine
|
tile.machine_radgen.name=Radiation-Powered Engine
|
||||||
tile.machine_radiolysis.name=Radioisotope Thermoelectric Generator and Radiolysis Chamber
|
tile.machine_radiolysis.name=Radioisotope Thermoelectric Generator and Radiolysis Chamber
|
||||||
tile.machine_reactor.name=Breeding Reactor
|
tile.machine_reactor.name=Breeding Reactor (LEGACY)
|
||||||
tile.machine_reactor_small.name=Research Reactor
|
tile.machine_reactor_small.name=Research Reactor (LEGACY)
|
||||||
tile.machine_refinery.name=Oil Refinery
|
tile.machine_refinery.name=Oil Refinery
|
||||||
tile.machine_reix_mainframe.name=Rei-X Mainframe (WIP)
|
tile.machine_reix_mainframe.name=Rei-X Mainframe (WIP)
|
||||||
tile.machine_rotary_furnace.name=Rotary Furnace
|
tile.machine_rotary_furnace.name=Rotary Furnace
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user