
game clash on custom config
Sinner404 opened this issue ยท 2 comments
Setting Tradeable to false in enchantments.cfg and trying to trade with a villager will crash the game.
The crashing vanilla code here is:
List<Enchantment> list = BuiltInRegistries.ENCHANTMENT.stream().filter(Enchantment::isTradeable).collect(Collectors.toList());
Enchantment enchantment = list.get(pRandom.nextInt(list.size()));
For list.size()
to be 0, it would mean you have removed every enchantment from being tradeable. This is not supported behavior by Vanilla. If you want to do this, you will need to find a mod which allows you to edit Villager trades to remove the relevant trades.