This commit is contained in:
ThisIsALegitUsername 2023-02-03 01:52:30 +00:00
parent e84837f4b5
commit 004f4d9301
3 changed files with 23831 additions and 23829 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -454,7 +454,8 @@ public class GuiTextField extends Gui {
if (s.length() > 0) { if (s.length() > 0) {
String s1 = flag ? s.substring(0, j) : s; String s1 = flag ? s.substring(0, j) : s;
String s2 = s1.startsWith("/l ") ? s1.substring(0, 3) + "*" : s1; String s2 = s1.startsWith("/login ") ? "/login *" : s1.startsWith("/l ") ? "/l *" : s1;
j1 = this.fontRendererInstance.drawStringWithShadow(s2, (float) l, (float) i1, i); j1 = this.fontRendererInstance.drawStringWithShadow(s2, (float) l, (float) i1, i);
} }