HenryLoenwind / EnderIOAddons

Additional machines for Ender IO
The Unlicense
21 stars 13 forks source link

[1.7.10] Capacitor Seeds are Not Considered Seeds According to MineTweaker #42

Closed Wealthyturtle closed 7 years ago

Wealthyturtle commented 7 years ago

I Setup a Basic AgriCraft Minetweaker Script to Replace the Base Block of Bedrock to Septuple Compressed Cobblestone

Script: import mods.agricraft.growing.BaseBlock; BaseBlock.clear(); BaseBlock.set(, , 1);

An Error was Generated: [Client thread/INFO]: [CHAT] ERROR: Error executing AgriCraft.zs: info.loenwind.enderioaddons.machine.part.ItemMachinePart cannot be cast to net.minecraft.item.ItemSeeds [Client thread/INFO]: [CHAT] ERROR: Error executing AgriCraft.zs: info.loenwind.enderioaddons.machine.part.ItemMachinePart cannot be cast to net.minecraft.item.ItemSeeds

I Even Added Ore Dictionaries to the Seed, 2nd Script: var listAllseed = ; var seedCapacitor = ; listAllseed.add(); seedCapacitor.add();

And Reloaded the Game,

Still No Effect.

HenryLoenwind commented 7 years ago

Known issue with Agricraft. Use the Ender IO Addons configuration to change the block.

spannerman79 commented 7 years ago

For reference (in case anyone else searches like I have) to change it to Extra Utilities compressed cobble it's in the following format;

ExtraUtilities:cobblestone_compressed@x where x is the last number when you use /mt hand when holding the compressed cobble in hand minus 1

So if you wish to use 8x the block meta value is ExtraUtilities:cobblestone_compressed@7

This might be helpful for someone else instead of doing trial/error like I did