From 637cca2e66d6df4e29e018b0e1dcf46ff0976c9d Mon Sep 17 00:00:00 2001 From: Patrick 'Quezler' Mounier Date: Thu, 19 Nov 2020 20:50:14 +0100 Subject: [PATCH] Probably one more --- core/src/mindustry/core/NetClient.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/core/NetClient.java b/core/src/mindustry/core/NetClient.java index 363d7f5050..b6b2a6deb9 100644 --- a/core/src/mindustry/core/NetClient.java +++ b/core/src/mindustry/core/NetClient.java @@ -345,7 +345,7 @@ public class NetClient implements ApplicationListener{ public static void warningToast(int unicode, String text){ if(text == null || Fonts.def.getData().getGlyph((char)unicode) == null) return; - ui.hudfrag.showToast(Fonts.getGlyph(ui.Fonts.def, (char)unicode), text); + ui.hudfrag.showToast(Fonts.getGlyph(Fonts.def, (char)unicode), text); } @Remote(variants = Variant.both)