package com.zivilon.cinder_loe.mixins; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.gen.Invoker; import lotr.common.entity.npc.LOTRTradeEntries; import lotr.common.LOTRFoods; @Mixin(LOTRTradeEntries.class) public interface MixinLOTRTradeEntries { @Invoker(value = "setVessels", remap = false) public abstract LOTRTradeEntries vessels(LOTRFoods foods); }