middle aged white woman jumpscare (cynthia)

This commit is contained in:
Boblet 2026-05-29 15:18:10 +02:00
parent 0df1aa65b0
commit 226506e6c2
5 changed files with 6 additions and 5 deletions

View File

@ -56,7 +56,7 @@
* Removed the old iron barrel * Removed the old iron barrel
* Removed the factory hull blocks * Removed the factory hull blocks
* Removed the vacuum block that has been unused for like 5 years at this point * Removed the vacuum block that has been unused for like 5 years at this point
* Removed five of the 10 stuurdy ladder variants because they were hella ugly anyway * Removed five of the 10 sturdy ladder variants because they were hella ugly anyway
* Added a new alternate recipe "instant aggregate" in the chemical plant, turning 16 cobblestone into 8 gravel and 8 sand * Added a new alternate recipe "instant aggregate" in the chemical plant, turning 16 cobblestone into 8 gravel and 8 sand
* Added a new alternate recipe for making obsidian in the chemical plant * Added a new alternate recipe for making obsidian in the chemical plant
* Removed the water and steam geysers, which were so obscenely rare most people have never seen either one of them, and became functionally useless without the old geothermal generator * Removed the water and steam geysers, which were so obscenely rare most people have never seen either one of them, and became functionally useless without the old geothermal generator
@ -70,3 +70,4 @@
* Fixed hopper IO for battery sockets being entirely broken * Fixed hopper IO for battery sockets being entirely broken
* Fixed cargo elevators not dropping the correct amount of segments * Fixed cargo elevators not dropping the correct amount of segments
* Fixed broken config check causing smithing recipes in anvils to always be tier 1 * Fixed broken config check causing smithing recipes in anvils to always be tier 1
* Fixed potential client desync when placing or removing lids on a hot RBMK

View File

@ -42,7 +42,7 @@ public class RBMKRod extends RBMKBase {
@Override @Override
public void breakBlock(World world, int x, int y, int z, Block block, int meta) { public void breakBlock(World world, int x, int y, int z, Block block, int meta) {
if(meta >= this.offset && !RBMKDials.getMeltdownsDisabled(world)) { if(!world.isRemote && meta >= this.offset && !RBMKDials.getMeltdownsDisabled(world)) {
TileEntityRBMKRod tile = (TileEntityRBMKRod) world.getTileEntity(x, y, z); TileEntityRBMKRod tile = (TileEntityRBMKRod) world.getTileEntity(x, y, z);
if(tile != null && tile.explodeOnBroken) { if(tile != null && tile.explodeOnBroken) {
if(tile.slots[0] != null && tile.slots[0].getItem() instanceof ItemRBMKRod && ItemRBMKRod.getHullHeat(tile.slots[0]) >= 1500) { if(tile.slots[0] != null && tile.slots[0].getItem() instanceof ItemRBMKRod && ItemRBMKRod.getHullHeat(tile.slots[0]) >= 1500) {

View File

@ -134,7 +134,7 @@ public class ChemicalPlantRecipes extends GenericRecipes<GenericRecipe> {
this.register(new GenericRecipe("chem.obsidian").setup(60, 500).setPools(GenericRecipes.POOL_PREFIX_DISCOVER + ".stone") this.register(new GenericRecipe("chem.obsidian").setup(60, 500).setPools(GenericRecipes.POOL_PREFIX_DISCOVER + ".stone")
.inputFluids(new FluidStack(Fluids.WATER, 1_000), new FluidStack(Fluids.LAVA, 500), new FluidStack(Fluids.AIR, 4_000)) .inputFluids(new FluidStack(Fluids.WATER, 1_000), new FluidStack(Fluids.LAVA, 500), new FluidStack(Fluids.AIR, 4_000))
.outputItems(new ItemStack(Blocks.obsidian))); .outputItems(new ItemStack(Blocks.obsidian)));
this.register(new GenericRecipe("chem.aggregate").setup(320, 500).setPools(GenericRecipes.POOL_PREFIX_DISCOVER + ".stone") this.register(new GenericRecipe("chem.aggregate").setupNamed(320, 500).setPools(GenericRecipes.POOL_PREFIX_DISCOVER + ".stone")
.inputItems(new ComparableStack(Blocks.cobblestone, 16)) .inputItems(new ComparableStack(Blocks.cobblestone, 16))
.outputItems(new ItemStack(Blocks.gravel, 8), new ItemStack(Blocks.sand, 8))); .outputItems(new ItemStack(Blocks.gravel, 8), new ItemStack(Blocks.sand, 8)));
this.register(new GenericRecipe("chem.concrete").setup(100, 100) this.register(new GenericRecipe("chem.concrete").setup(100, 100)

View File

@ -13,8 +13,8 @@ public class ParseMSES1 implements IParse {
public EnumStatementReturn eval(ParseContext ctx, String line) { public EnumStatementReturn eval(ParseContext ctx, String line) {
String lower = line.toLowerCase(Locale.US); String lower = line.toLowerCase(Locale.US);
// jump point destination, skip // jump point destination or comment, skip
if(lower.startsWith("dest ") || lower.startsWith("# ")) { if(line.isEmpty() || lower.startsWith("dest ") || lower.startsWith("# ")) {
return EnumStatementReturn.SKIP; return EnumStatementReturn.SKIP;
} }

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB