Bob 2023-08-24 22:04:11 +02:00
parent 549ecc0917
commit 2928f832a3
7 changed files with 11 additions and 9 deletions

View File

@ -192,7 +192,7 @@ public class BlockBobble extends BlockContainer implements IGUIProvider {
DRILLGON( "Drillgon200", "Drillgon200", "1.12 Port", null, false, ScrapType.CPU_LOGIC), DRILLGON( "Drillgon200", "Drillgon200", "1.12 Port", null, false, ScrapType.CPU_LOGIC),
CIRNO( "Cirno", "Cirno", "the only multi layered skin i had", "No brain. Head empty.", true, ScrapType.BOARD_BLANK), CIRNO( "Cirno", "Cirno", "the only multi layered skin i had", "No brain. Head empty.", true, ScrapType.BOARD_BLANK),
MICROWAVE( "Microwave", "Microwave", "OC compat", "they call me the food heater", true, ScrapType.BRIDGE_BIOS), MICROWAVE( "Microwave", "Microwave", "OC compat", "they call me the food heater", true, ScrapType.BRIDGE_BIOS),
PEEP( "Peep", "LePeeperSauvage", "Coilgun model", "Fluffy ears can't hide in ash, nor snow.", true, ScrapType.CPU_CLOCK); PEEP( "Peep", "LePeeperSauvage", "Coilgun, Leadburster and Congo Lake models, BDCL QC", "Fluffy ears can't hide in ash, nor snow.", true, ScrapType.CPU_CLOCK);
public String name; //the title of the tooltip public String name; //the title of the tooltip
public String label; //the name engraved in the socket public String label; //the name engraved in the socket

View File

@ -216,11 +216,11 @@ public class EntityBulletBaseNT extends EntityThrowableInterp implements IBullet
return; return;
} }
if(this.config.bntUpdate != null) this.config.bntUpdate.behaveUpdate(this);
if(this.ticksExisted > config.maxAge) this.setDead(); if(this.ticksExisted > config.maxAge) this.setDead();
} }
if(this.config.bntUpdate != null) this.config.bntUpdate.behaveUpdate(this);
this.prevPosX = posX; this.prevPosX = posX;
this.prevPosY = posY; this.prevPosY = posY;
this.prevPosZ = posZ; this.prevPosZ = posZ;

View File

@ -402,12 +402,12 @@ public class ChemplantRecipes extends SerializableRecipe {
.inputFluids(new FluidStack(Fluids.CHLOROCALCITE_CLEANED, 500), new FluidStack(Fluids.SULFURIC_ACID, 8_000)) .inputFluids(new FluidStack(Fluids.CHLOROCALCITE_CLEANED, 500), new FluidStack(Fluids.SULFURIC_ACID, 8_000))
.outputFluids(new FluidStack(Fluids.POTASSIUM_CHLORIDE, 250), new FluidStack(Fluids.CALCIUM_CHLORIDE, 250))); .outputFluids(new FluidStack(Fluids.POTASSIUM_CHLORIDE, 250), new FluidStack(Fluids.CALCIUM_CHLORIDE, 250)));
recipes.add(new ChemRecipe(102, "THORIUM_SALT", 60) recipes.add(new ChemRecipe(102, "THORIUM_SALT", 60)
.inputFluids(new FluidStack(Fluids.THORIUM_SALT_DEPLETED, 8_000)) .inputFluids(new FluidStack(Fluids.THORIUM_SALT_DEPLETED, 16_000))
.inputItems(new OreDictStack(TH232.dust(), 1)) .inputItems(new OreDictStack(TH232.nugget(), 2))
.outputFluids(new FluidStack(Fluids.THORIUM_SALT, 8_000)) .outputFluids(new FluidStack(Fluids.THORIUM_SALT, 16_000))
.outputItems( .outputItems(
new ItemStack(ModItems.nugget_u233, 4, 10), new ItemStack(ModItems.nugget_u233, 1),
new ItemStack(ModItems.nuclear_waste_tiny, 5, 10))); new ItemStack(ModItems.nuclear_waste_tiny, 1)));
} }
public static void registerFuelProcessing() { public static void registerFuelProcessing() {

View File

@ -212,7 +212,7 @@ public class TileEntityPWRController extends TileEntityMachineBase implements IG
} }
/* CORE COOLING */ /* CORE COOLING */
double coreCoolingApproachNum = getXOverE((double) this.heatexCount / (double) this.rodCount, 2) / 2D; double coreCoolingApproachNum = getXOverE((double) this.heatexCount * 5 / (double) this.rodCount, 2) / 2D;
int averageCoreHeat = (this.coreHeat + this.hullHeat) / 2; int averageCoreHeat = (this.coreHeat + this.hullHeat) / 2;
this.coreHeat -= (coreHeat - averageCoreHeat) * coreCoolingApproachNum; this.coreHeat -= (coreHeat - averageCoreHeat) * coreCoolingApproachNum;
this.hullHeat -= (hullHeat - averageCoreHeat) * coreCoolingApproachNum; this.hullHeat -= (hullHeat - averageCoreHeat) * coreCoolingApproachNum;

View File

@ -260,6 +260,7 @@ chem.SULFURIC_ACID=Schwefelsäureherstellung
chem.TATB=TATB-Synthese chem.TATB=TATB-Synthese
chem.TEL=TEL mischen chem.TEL=TEL mischen
chem.TEST=Test chem.TEST=Test
chem.THORIUM_SALT=Thoriumsalz-Anreicherung
chem.TNT=TNT-Synthese chem.TNT=TNT-Synthese
chem.UF6=Uranhexafluoridproduktion chem.UF6=Uranhexafluoridproduktion
chem.VIT_GAS=Gas-Atommüllvitrifizierung chem.VIT_GAS=Gas-Atommüllvitrifizierung

View File

@ -611,6 +611,7 @@ chem.SULFURIC_ACID=Sulfuric Acid Production
chem.TATB=TATB Synthesis chem.TATB=TATB Synthesis
chem.TEL=TEL Mixing chem.TEL=TEL Mixing
chem.TEST=Test chem.TEST=Test
chem.THORIUM_SALT=Thorium Salt Enrichment
chem.TNT=TNT Synthesis chem.TNT=TNT Synthesis
chem.UF6=Uranium Hexafluoride Production chem.UF6=Uranium Hexafluoride Production
chem.VIT_GAS=Gaseous Nuclear Waste Vitrification chem.VIT_GAS=Gaseous Nuclear Waste Vitrification

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 11 KiB