Skip to content

Instantly share code, notes, and snippets.

View ChiefLogan3010's full-sized avatar

ChiefLogan3010

View GitHub Profile
---- Minecraft Crash Report ----
WARNING: coremods are present:
CTMCorePlugin (CTM-MC1.12-0.2.3.12.jar)
CoreMod (Aroma1997Core-1.12.2-1.3.0.2.jar)
Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)
LoadingPlugin (RandomThings-MC1.12.2-4.1.2.jar)
ColytraLoadingPlugin (colytra-1.12.2-1.0.4.3.jar)
IELoadingPlugin (ImmersiveEngineering-0.12-76-core.jar)
NWRTweak (redstonepaste-mc1.12-1.7.5.jar)
import crafttweaker.item.IItemStack;
val Ingots = [<minecraft:gold_ingot>,
<minecraft:iron_ingot>,
<minecraft:brick>,
<minecraft:netherbrick>,
<advancedrocketry:productingot>,
<advancedrocketry:productingot:1>,
<advancedrocketry:misc:1>,
<astralsorcery:itemcraftingcomponent:1>,
@ChiefLogan3010
ChiefLogan3010 / tinker_tools_begone.zs
Created August 7, 2021 16:22
Removes all tools and parts for tinker's construct 1.16
import crafttweaker.api.item.IItemStack;
//removes tool part recipes from the part builder and casting table, along with recipes to melt them back into resources (will help tidy up the melting tab of JEI)
<recipetype:tconstruct:part_builder>.removeByRegex("tconstruct:tools.*");
<recipetype:tconstruct:casting_table>.removeByRegex("tconstruct:tools.*");
<recipetype:tconstruct:melting>.removeByRegex("tconstruct:tools.*");
//removes all recipes for modifiers and upgrades, only necessary if tinkers tools can be obtained in another way, but you wish to prevent them from being modified or upgraded. Also removes the JEI category
<recipetype:tconstruct:tinker_station>.removeAll();