From e4d398e600c25c0ab466191d36ec0b2cdefe20d7 Mon Sep 17 00:00:00 2001 From: drcrazy Date: Mon, 13 Jun 2022 00:55:16 +0300 Subject: [PATCH] Fix fishing junk loot --- src/main/java/techreborn/init/ModLoot.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/techreborn/init/ModLoot.java b/src/main/java/techreborn/init/ModLoot.java index f99e548d8..8e76d978f 100644 --- a/src/main/java/techreborn/init/ModLoot.java +++ b/src/main/java/techreborn/init/ModLoot.java @@ -96,7 +96,7 @@ public class ModLoot { LootTableEvents.MODIFY.register((resourceManager, lootManager, id, tableBuilder, source) -> { String stringId = id.toString(); - if (!stringId.startsWith("minecraft:chests")) { + if (!stringId.startsWith("minecraft:gameplay") && !stringId.startsWith("minecraft:chests")) { return; }