Bugfixes / Team access

This commit is contained in:
Anuken
2020-08-13 19:57:45 -04:00
parent c2f71e5788
commit 1d95980066
5 changed files with 7 additions and 4 deletions

View File

@@ -125,7 +125,7 @@ public class LogicBlock extends Block{
int bytelen = stream.readInt();
byte[] bytes = new byte[bytelen];
stream.read(bytes);
stream.readFully(bytes);
int total = stream.readInt();
@@ -181,7 +181,7 @@ public class LogicBlock extends Block{
int bytelen = stream.readInt();
byte[] bytes = new byte[bytelen];
stream.read(bytes);
stream.readFully(bytes);
links.clear();