jaquadro / GardenCollection

A collection of garden-themed mods for Minecraft Forge.
MIT License
24 stars 12 forks source link

Minetweaker 3 compatibility issue with specific Sub-blocks #21

Open PitchBright opened 9 years ago

PitchBright commented 9 years ago

I get a error thrown when I load the world, when I have a script present that contains the following recipe change using MineTweaker 3.

recipes.addShaped(GardenTrees:thin_log:12491 * 8, [[BiomesOPlenty:logs1:3, null, BiomesOPlenty:logs1:3]]); recipes.addShaped(GardenTrees:thin_log:12492 * 8, [[BiomesOPlenty:logs2:3, null, BiomesOPlenty:logs2:3]]);

recipes.addShaped(GardenTrees:thin_log_fence:12491 * 1, [[GardenTrees:thin_log:12491, minecraft:string, GardenTrees:thin_log:12491]]); recipes.addShaped(GardenTrees:thin_log_fence:12492 * 1, [[GardenTrees:thin_log:12492, minecraft:string, GardenTrees:thin_log:12492]]);

I'm only showing the blocks that are throwing the errors, the rest of the subblocks in the "thin_log" and "thin_log_fence" classes are fine. It's definitely something to do with meta #s 12491 and 12492… (possibly 12493 as well but I haven't tested it).

This potential issue has surfaced while updating GardenStuff-1.7.10-1.5.2 to GardenStuff-1.7.10-1.6.1

I do not believe it to be related to the BOP blocks being used, as they check out fine when used in other thin_log and thin_log_fence recipes.

jaquadro commented 9 years ago

Do BiomesOPlenty:logs1 and BiomesOPlenty:logs2 correspond to block IDs 203 and 204? The metadata on the posts and fences actually encodes an ID-meta pair. If they're out of sync, maybe it could result in some kind of error, but it definitely would give you the wrong output.

PitchBright commented 9 years ago

Yeah, 203 & 204.

When I'm not using MineTweaker… NEI doesn't display any recipes for BOP Posts, or BOP Post Fences.