Fix 1.9 block entity data send

This commit is contained in:
KennyTV 2021-06-01 19:36:25 +02:00
parent 104fa4e29f
commit 57cf1803f3
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B

View File

@ -79,6 +79,6 @@ public class BlockEntity {
wrapper.write(Type.POSITION, pos);
wrapper.write(Type.UNSIGNED_BYTE, id);
wrapper.write(Type.NBT, tag);
wrapper.send(Protocol1_9_1_2To1_9_3_4.class, false);
wrapper.scheduleSend(Protocol1_9_1_2To1_9_3_4.class, false);
}
}