Added getters to ErrorMessage fields, so they can be read client-side

This commit is contained in:
Mads Boddum
2023-11-10 23:36:02 +01:00
parent 1564e4a839
commit c0e464c40f

View File

@@ -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;
}
}