Majrusz / MajruszLibrary

Library with common code for my Minecraft modifications.
8 stars 6 forks source link

[1.20.1][Forge] Conflict with Mine and Slash #91

Open RobertSkalko opened 2 months ago

RobertSkalko commented 2 months ago

https://github.com/Majrusz/MajruszLibrary/blob/91912ba0325377004f421d47deec1fa0ad96e73d/forge/src/main/java/com/majruszlibrary/mixin/forge/MixinLootTable.java#L15

Here you setreturnvalue in a loot table mixin. That stops all other mixins from other mods from working. I assume you just want to add your loot, so you can just do

ci.getReturnValue().addAll(event.itemsToAddToDrop);

That way my mod will also be able to add items to a loot table with your mod loaded.

Idk if you still support 1.20.1 but this should be a quick fix