Creative Energy Cell Uncraftable
Valdevon opened this issue ยท 2 comments
The Metadata required for the cell's in the creative energy cell recipe are unobtainable in survival mode.
Here is the closest metadata I was able to get
Notice the "Creative:0b" and "Level:0b" metadata that is present on my metadata, and not in the recipe's. That's the only difference.
Here's some suggested metadata to use instead, which is the metadata it has after crafting the cell and not placing it
Note that the recv and send values are different for the different tiers of cells
Fix:
var basiccell = <thermalexpansion:cell>.withTag({Recv: 10000, Level: 0 as byte, Send: 10000});
var hardenedcell = <thermalexpansion:cell>.withTag({Recv: 40000, Level: 1 as byte, Send: 40000});
var reinforcedcell = <thermalexpansion:cell>.withTag({Recv: 90000, Level: 2 as byte, Send: 90000});
var signalumcell = <thermalexpansion:cell>.withTag({Recv: 160000, Level: 3 as byte, Send: 160000});
var resonantcell = <thermalexpansion:cell>.withTag({Recv: 250000, Level: 4 as byte, Send: 250000});
mods.extendedcrafting.TableCrafting.addShaped(creativecell, [
[basiccell,basiccell,basiccell,hardenedcell,reinforcedcell,hardenedcell,basiccell,basiccell,basiccell],
[basiccell,basiccell,hardenedcell,reinforcedcell,signalumcell,reinforcedcell,hardenedcell,basiccell,basiccell],
[basiccell,hardenedcell,reinforcedcell,signalumcell,resonantcell,signalumcell,reinforcedcell,hardenedcell,basiccell],
[hardenedcell,reinforcedcell,signalumcell,resonantcell,<contenttweaker:ultimate_power_storage>,resonantcell,signalumcell,reinforcedcell,hardenedcell],
[reinforcedcell,signalumcell,resonantcell,<contenttweaker:ultimate_power_storage>,<avaritia:resource:5>,<contenttweaker:ultimate_power_storage>,resonantcell,signalumcell,reinforcedcell],
[hardenedcell,reinforcedcell,signalumcell,resonantcell,<contenttweaker:ultimate_power_storage>,resonantcell,signalumcell,reinforcedcell,hardenedcell],
[basiccell,hardenedcell,reinforcedcell,signalumcell,resonantcell,signalumcell,reinforcedcell,hardenedcell,basiccell],
[basiccell,basiccell,hardenedcell,reinforcedcell,signalumcell,reinforcedcell,hardenedcell,basiccell,basiccell],
[basiccell,basiccell,basiccell,hardenedcell,reinforcedcell,hardenedcell,basiccell,basiccell,basiccell]]);