Better Wandering Traders [FABRIC]

Better Wandering Traders [FABRIC]

385k Downloads

Other mods accessing TradeOffers causes your mod to crash

Linguardium opened this issue ยท 1 comments

commented

BetterWanderingTraderConfig config = AutoConfig.getConfigHolder(BetterWanderingTraderConfig.class).getConfig();

You add a static reference to your autoconfig which may be initialized before your mod does (so your config isnt loaded yet).
ideally, dont access your config statically in a mixin as you cant guarantee your mod will load first.

you may want to get access to the list and then add to it in your mod rather than the mixin. you could add an accessor for this

commented

Thank you for bringing this to my attention. I have taken your advice and there should not be any more issues with mods that also access TradeOffers.