1.14.3 + more recipe fixes

This commit is contained in:
modmuss50 2019-07-01 00:24:12 +01:00
parent 5f134a7379
commit 18950e0b29
35 changed files with 240 additions and 251 deletions

View file

@ -27,7 +27,7 @@ package techreborn.client.container;
import net.minecraft.container.Slot;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.ItemStack;
import net.minecraft.network.chat.TextComponent;
import net.minecraft.text.LiteralText;
import reborncore.client.gui.slots.SlotFilteredVoid;
import reborncore.common.container.RebornContainer;
import reborncore.common.util.Inventory;
@ -39,7 +39,7 @@ public class ContainerDestructoPack extends RebornContainer {
private Inventory<?> inv;
public ContainerDestructoPack(PlayerEntity player) {
super(null, new TextComponent("destructopack"));
super(null, new LiteralText("destructopack"));
this.player = player;
inv = new Inventory<>(1, "destructopack", 64, null);
buildContainer();