From 94817b99a332bd10c8bb6642ceec18f8e8024b1b Mon Sep 17 00:00:00 2001 From: Matthew Date: Sat, 23 Jan 2021 15:34:57 -0500 Subject: Reword notice and add to chat --- .../src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java b/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java index da2d3f8..919491a 100644 --- a/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java +++ b/serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java @@ -111,9 +111,15 @@ public class BCPlayer { TextPacket text = new TextPacket(); text.setType(TextPacket.Type.TIP); - text.setMessage("If the serverlist popup appears to be gone, \nmove around to re-trigger the popup."); + text.setMessage("==!!== Move around to re-trigger the popup ==!!=="); text.setXuid(uuid); session.sendPacket(text); + + TextPacket text2 = new TextPacket(); + text2.setType(TextPacket.Type.RAW); + text2.setMessage("\n\n\n\n\n\n\n\n\n\n\n\n\n\n==!!== Move around to re-trigger the popup ==!!==\n\n\n\n\n\n\n\n\n\n\n"); + text2.setXuid(uuid); + session.sendPacket(text2); } public boolean isActive() { return Duration.between(lastAction, LocalTime.now()).toMillis() <= 600000; } -- cgit v1.2.1