[Fix] Signs would not drop self
This commit is contained in:
parent
e2c56d1f50
commit
75aa6c8c9f
1 changed files with 16 additions and 0 deletions
|
@ -0,0 +1,16 @@
|
|||
package org.betterx.datagen.betterend.recipes;
|
||||
|
||||
import org.betterx.bclib.api.v3.datagen.BlockLootTableProvider;
|
||||
import org.betterx.betterend.BetterEnd;
|
||||
|
||||
import net.fabricmc.fabric.api.datagen.v1.FabricDataOutput;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public class EndBlockLootTableProvider extends BlockLootTableProvider {
|
||||
public EndBlockLootTableProvider(
|
||||
FabricDataOutput output
|
||||
) {
|
||||
super(output, List.of(BetterEnd.MOD_ID));
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue