blob: cf36d116fdbdc50df7e950dfcc80e2980e8c1044 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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;
}
}
|