Skip to content

Commit

Permalink
Fix not rendering on server client
Browse files Browse the repository at this point in the history
  • Loading branch information
irtimaled committed Mar 25, 2019
1 parent 3b6b143 commit 2a19db6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/irtimaled/bbor/client/ClientProxy.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private void disconnectedFromServer() {
}

private void addBoundingBox(AddBoundingBoxReceived event) {
BoundingBoxCache cache = getCache(event.getDimensionId());
BoundingBoxCache cache = getOrCreateCache(event.getDimensionId());
if (cache == null) return;

cache.addBoundingBoxes(event.getKey(), event.getBoundingBoxes());
Expand Down

0 comments on commit 2a19db6

Please sign in to comment.