mirror of
https://github.com/ProjectSWGCore/pswgcommon.git
synced 2026-01-17 00:04:25 -05:00
Added constructor to MissionListRequest, so it can be "sent" in testcases
This commit is contained in:
@@ -34,8 +34,12 @@ public class MissionListRequest extends ObjectController{
|
||||
public static final int CRC = 0x00F5;
|
||||
|
||||
private long terminalId;
|
||||
private byte tickCount;
|
||||
|
||||
private byte tickCount;
|
||||
|
||||
public MissionListRequest(long objectId) {
|
||||
super(objectId, CRC);
|
||||
}
|
||||
|
||||
public MissionListRequest(NetBuffer data) {
|
||||
super(CRC);
|
||||
decode(data);
|
||||
|
||||
Reference in New Issue
Block a user