13
0
geforkt von Mirrors/Paper

Always try to load entity origin location from new NBT tag

Dieser Commit ist enthalten in:
Byteflux 2016-03-25 09:32:09 -07:00
Ursprung bcc957e753
Commit fc3f55ddc8

Datei anzeigen

@ -33,11 +33,9 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
// CraftBukkit end
+ // Paper start - Restore the entity's origin location
+ if (origin == null) {
+ NBTTagList originTag = nbttagcompound.getList("Paper.Origin", 6);
+ if (!originTag.isEmpty()) {
+ origin = new Location(world.getWorld(), originTag.e(0), originTag.e(1), originTag.e(2));
+ }
+ NBTTagList originTag = nbttagcompound.getList("Paper.Origin", 6);
+ if (!originTag.isEmpty()) {
+ origin = new Location(world.getWorld(), originTag.e(0), originTag.e(1), originTag.e(2));
+ }
+ // Paper end
+