Merge branch '1.20-bugfix' into 1.20.2-bugfix

This commit is contained in:
Sollace 2023-10-30 22:01:35 +00:00
commit 662153d2da
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -127,7 +127,9 @@ public class EntityAppearance implements NbtSerialisable, PlayerDimensions.Provi
entity = null; entity = null;
} }
if (blockEntity != null) { if (blockEntity != null) {
blockEntity.markRemoved(); try {
blockEntity.markRemoved();
} catch (Throwable ignored) {}
blockEntity = null; blockEntity = null;
} }
} }