Fix Server-side and ChatSuffix

This commit is contained in:
Jess 2023-10-05 03:41:03 +01:00
parent 2e155aa16c
commit 5ccebb7194
3 changed files with 5 additions and 5 deletions

View file

@ -34,11 +34,11 @@ import java.util.function.Consumer;
public class BaseBand {
public static int majorVersion = 1;
public static int buildNumber = 447;
public static String hash = "0c9b07530f2b1e4f";
public static int buildNumber = 448;
public static String hash = "d5b3d65af18e25af";
public static String name = "BaseBand";
public long timeOfCompile = 1696423461109L;
public long timeOfCompile = 1696473634211L;
public CommandManager commandRegistry;
public EventBus eventBus;
public ArrayList<Module> modules = new ArrayList<>();

View file

@ -22,7 +22,7 @@ public class ChatSuffix extends Module {
}
String s = ((CPacketChatMessage) e.getPacket()).getMessage();
s = s + " " + "" + "ʙᴀꜱᴇʙᴀɴᴅ" + "";
s = s + " " + " " + "ʙᴀꜱᴇʙᴀɴᴅ" + "";
if (s.length() > 256) {

View file

@ -162,7 +162,7 @@ public class ClientHandler extends Thread {
}
} catch (Exception e) {
e.printStackTrace();
this.interrupt();
//this.interrupt();
}
}
}