mirror of
https://github.com/ProjectSWGCore/pswgcommon.git
synced 2026-01-15 23:04:19 -05:00
Added getters to ErrorMessage fields, so they can be read client-side
This commit is contained in:
@@ -66,4 +66,16 @@ public class ErrorMessage extends SWGPacket {
|
||||
data.addBoolean(fatal);
|
||||
return data;
|
||||
}
|
||||
|
||||
public String getType() {
|
||||
return type;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public boolean isFatal() {
|
||||
return fatal;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user