From d13e90f6e0af69655f7b7a666d540a36cd26d85e Mon Sep 17 00:00:00 2001 From: "petrak@" Date: Thu, 23 Jan 2025 19:24:18 -0600 Subject: [PATCH] Stonecut GTCEU warning blocks into each other For parity with Chisel. --- kubejs/server_scripts/random_recipes.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/kubejs/server_scripts/random_recipes.js b/kubejs/server_scripts/random_recipes.js index 328a73013..3dec42811 100644 --- a/kubejs/server_scripts/random_recipes.js +++ b/kubejs/server_scripts/random_recipes.js @@ -604,7 +604,17 @@ ServerEvents.recipes(event => { }); }); }); - + + // Stonecut GTCEU warning blocks into each other + let hazardNames = ['acid', 'antimatter', 'bio', 'boss', 'causality', 'explosion', 'fire', + 'generic', 'gregification', 'high_pressure', 'high_temperature', 'high_voltage', + 'laser', 'magic', 'magnetic', 'mob_infestation', 'mob_spawner', 'noise', + 'radioactive', 'spatial_storage', 'turret', 'void']; + for (let hazardName of hazardNames) { + let hazard = `gtceu:${hazardName}_hazard_sign_block` + event.stonecutting(hazard, "gtceu:solid_machine_casing") + event.stonecutting("gtceu:solid_machine_casing", hazard) + } // Stonecutting Marble let MarbleTag = ['#moni:marble']; // What item tags to go through (change this so you have your tags)