Added resources for rest of nigiri, added Tuna fish item and loot table with fishing
This commit is contained in:
parent
6339f0b638
commit
65bd477d18
42 changed files with 705 additions and 14 deletions
|
|
@ -0,0 +1,14 @@
|
|||
package dev.confuzzedcat.sushi.mixin;
|
||||
|
||||
import net.minecraft.loot.LootPool;
|
||||
import net.minecraft.loot.LootTable;
|
||||
import org.spongepowered.asm.mixin.Mixin;
|
||||
import org.spongepowered.asm.mixin.gen.Accessor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Mixin(LootTable.Builder.class)
|
||||
public interface ILootTableBuilderAccessor {
|
||||
@Accessor
|
||||
List<LootPool> getPools();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue