summaryrefslogtreecommitdiff
path: root/NET/worlds/network/FingerReplyCmd.java
diff options
context:
space:
mode:
authorFuwn <[email protected]>2026-02-12 22:33:32 -0800
committerFuwn <[email protected]>2026-02-12 22:33:32 -0800
commitc7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9 (patch)
treedf9f48bf128a6c0186a8e91857d6ff30fe0e9f18 /NET/worlds/network/FingerReplyCmd.java
downloadworldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.tar.xz
worldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.zip
Initial commit
Diffstat (limited to 'NET/worlds/network/FingerReplyCmd.java')
-rw-r--r--NET/worlds/network/FingerReplyCmd.java29
1 files changed, 29 insertions, 0 deletions
diff --git a/NET/worlds/network/FingerReplyCmd.java b/NET/worlds/network/FingerReplyCmd.java
new file mode 100644
index 0000000..cf36d11
--- /dev/null
+++ b/NET/worlds/network/FingerReplyCmd.java
@@ -0,0 +1,29 @@
+package NET.worlds.network;
+
+import java.io.IOException;
+
+public class FingerReplyCmd extends receivedNetPacket {
+ public static final byte FINGERREPLYCMD = 28;
+ private String _user;
+ private PropertyList _propList;
+
+ public FingerReplyCmd() {
+ this._commandType = 28;
+ }
+
+ @Override
+ void parseNetData(ServerInputStream data) throws IOException {
+ this._user = data.readUTF();
+ this._propList = new PropertyList();
+ this._propList.parseNetData(data);
+ }
+
+ @Override
+ void process(WorldServer serv) throws Exception {
+ }
+
+ @Override
+ public String toString(WorldServer serv) {
+ return "FINGREP " + this._user + " " + this._propList;
+ }
+}