1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-10-31 21:52:59 +00:00

Bump to 1.14.1pr1

Which means bumping mappings version. Oh boy, this was not a bundle of
laughs...
This commit is contained in:
SquidDev
2019-05-07 20:40:55 +01:00
parent 2a716244e9
commit b11d4bb209
59 changed files with 306 additions and 295 deletions

View File

@@ -17,7 +17,7 @@ import dan200.computercraft.shared.computer.inventory.ContainerComputer;
import net.minecraft.client.gui.ContainerScreen;
import net.minecraft.container.Container;
import net.minecraft.entity.player.PlayerInventory;
import net.minecraft.text.StringTextComponent;
import net.minecraft.network.chat.TextComponent;
import net.minecraft.util.Identifier;
import org.lwjgl.glfw.GLFW;
@@ -38,7 +38,7 @@ public class GuiComputer<T extends Container> extends ContainerScreen<T>
public GuiComputer( T container, PlayerInventory player, ComputerFamily family, ClientComputer computer, int termWidth, int termHeight )
{
super( container, player, new StringTextComponent( "" ) );
super( container, player, new TextComponent( "" ) );
m_family = family;
m_computer = computer;