summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew <pugmatt@gmail.com>2021-01-23 15:34:57 -0500
committerMatthew <pugmatt@gmail.com>2021-01-23 15:34:57 -0500
commit94817b99a332bd10c8bb6642ceec18f8e8024b1b (patch)
tree7b0f9c280653c4eeeba0666df3a8172021d9963e
parent3aa8420f82600877e3be85ff0b1eac08b30553cf (diff)
downloadBedrockConnect-94817b99a332bd10c8bb6642ceec18f8e8024b1b.tar.gz
BedrockConnect-94817b99a332bd10c8bb6642ceec18f8e8024b1b.tar.bz2
BedrockConnect-94817b99a332bd10c8bb6642ceec18f8e8024b1b.zip
Reword notice and add to chat
-rw-r--r--serverlist-server/src/main/com/pyratron/pugmatt/bedrockconnect/BCPlayer.java8
1 files changed, 7 insertions, 1 deletions
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; }