This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A fatal error has been detected by the Java Runtime Environment: | |
# | |
# EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x0000000032ab0000, pid=14208, tid=0x0000000000002af0 | |
# | |
# JRE version: Java(TM) SE Runtime Environment (8.0_231-b11) (build 1.8.0_231-b11) | |
# Java VM: Java HotSpot(TM) 64-Bit Server VM (25.231-b11 mixed mode windows-amd64 compressed oops) | |
# Problematic frame: | |
# C 0x0000000032ab0000 | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Building registry | |
[INITIALIZATION][CLIENT][INFO] CraftTweaker: Successfully built item registry | |
[INITIALIZATION][CLIENT][INFO] Loading scripts | |
[INITIALIZATION][CLIENT][INFO] [crafttweaker | SIDE_CLIENT]: Loading Script: {[0:crafttweaker]: test.zs} | |
[INITIALIZATION][CLIENT][INFO] Completed script loading in: 644ms | |
[POSTINITIALIZATION][CLIENT][INFO] Applying MrCrayfish's Furniture Mod changes... | |
[POSTINITIALIZATION][CLIENT][INFO] Add trade input-item=minecraft:stick,input-amount=42,input-metadata=0,payment-item=minecraft:diamond,output-item-metadata=0,payment-price=13 to MineBay | |
[POSTINITIALIZATION][CLIENT][INFO] MineBay: Added trade input-item=minecraft:stick,input-amount=42,input-metadata=0,payment-item=minecraft:diamond,output-item-metadata=0,payment-price=13 | |
[POSTINITIALIZATION][CLIENT][INFO] Add trade input-item=minecraft:apple,input-amount=16,input-metadata=0,payment-item=minecraft:emerald,output-item-metadata=0,payment-price=3 to MineBay | |
[POSTINITIALIZATION][CL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MineBay | |
mods.cfm.MineBay.addTrade(<minecraft:stick>.withAmount(42),<minecraft:diamond>.withAmount(13)); | |
mods.cfm.MineBay.addTrade(<minecraft:apple>.withAmount(16),<minecraft:emerald>.withAmount(3)); | |
mods.cfm.MineBay.addTrade(<minecraft:carrot>,<minecraft:emerald>); | |
mods.cfm.MineBay.remove(<minecraft:potion>.withTag({Potion: "night_vision"})); | |
// Oven | |
mods.cfm.Oven.addRecipe(<minecraft:apple>.withAmount(2),<minecraft:stick>); | |
mods.cfm.Oven.remove(<cfm:item_flesh_cooked>); | |
mods.cfm.Oven.remove(null,<minecraft:potato>); |