Fixed Bartering LootTable

This commit is contained in:
Frank 2022-06-07 22:20:54 +02:00
parent f7b4c8a618
commit 261099babd
7 changed files with 108 additions and 318 deletions

View file

@ -0,0 +1,10 @@
package org.betterx.bclib.interfaces;
import net.minecraft.world.level.storage.loot.LootPool;
import net.minecraft.world.level.storage.loot.entries.LootPoolEntryContainer;
import java.util.List;
public interface LootPoolAccessor {
LootPool bcl_mergeEntries(List<LootPoolEntryContainer> newEntries);
}