Started by
benji bon
on
Topic category: Help with Minecraft modding (Java Edition)
as you know, you can eat dried kelp twice as fast as a normal food, I was wondering, how do I make my modded food be consumed faster? I'm fine with editing the actual code if that's needed.
here's the part from the generated code, if that helps at all.
super(new Item.Properties().stacksTo(64).rarity(Rarity.COMMON).food((new FoodProperties.Builder()).nutrition(2).saturationMod(3f).meat().build()));
boost
I figured it out... In case any future people are wondering this, it's the item use duration section at the bottom of the properties tab, change it from 32 to 16.