diff options
| author | Fuwn <[email protected]> | 2026-02-12 22:33:32 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-12 22:33:32 -0800 |
| commit | c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9 (patch) | |
| tree | df9f48bf128a6c0186a8e91857d6ff30fe0e9f18 /NET/worlds/network/FingerReplyCmd.java | |
| download | worldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.tar.xz worldsplayer-c7a9d4a6bd53ed7d61731770f2f10e8b9fd435f9.zip | |
Initial commit
Diffstat (limited to 'NET/worlds/network/FingerReplyCmd.java')
| -rw-r--r-- | NET/worlds/network/FingerReplyCmd.java | 29 |
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; + } +} |