Merge branch 'patch-36' into 'dev'

updated exception

See merge request morningstar/Arcturus-Community!218
This commit is contained in:
Mike 2020-06-01 08:51:27 -04:00
commit 1866e343ca

View File

@ -42,7 +42,7 @@ public class ServerMessage {
try { try {
this.stream.writeInt(0); this.stream.writeInt(0);
this.stream.writeShort(id); this.stream.writeShort(id);
} catch (Exception e) { } catch (IOException e) {
throw new ServerMessageException(e); throw new ServerMessageException(e);
} }