I'm trying to add new pots to the Pottery mod and it doesn't recognize modded dyes. Creating a new PotBlock works, but the PotColor argument only accepts vanilla dyes. Is there a way to add dye colors from El and L's Dye Mod or other dye mods to the list of accepted colors? const PotBlock = Java.loadClass('com.supermartijn642.pottery.content.PotBlock') const PotType = Java.loadClass('com.supermartijn642.pottery.content.PotType') const PotColors = Java.loadClass('com.supermartijn642.pottery.content.PotColor') const DyeColor = Java.loadClass('net.minecraft.world.item.DyeColor') StartupEvents.registry('block', event => { new PotBlock('base', DyeColor.MINT) })
Contribute to SuperMartijn642/Pottery development by creating an account on GitHub.