Commits

md_5 authored 75fac431cfc
SPIGOT-5472: Spurious warning when using clone command on tile entities
No tags

nms-patches/World.patch

Modified
327 327 this.notify(tileentity1.getPosition(), iblockdata, iblockdata, 3);
328 328 + // CraftBukkit start
329 329 + // From above, don't screw this up - SPIGOT-1746
330 330 + if (!this.tileEntityList.contains(tileentity1)) {
331 331 + this.a(tileentity1);
332 332 + }
333 333 + // CraftBukkit end
334 334 }
335 335 }
336 336 }
337 -@@ -604,6 +816,7 @@
338 - }
339 - }
337 +@@ -606,12 +818,26 @@
340 338
341 -+ public Map<BlockPosition, TileEntity> capturedTileEntities = Maps.newHashMap();
342 339 @Nullable
343 340 @Override
341 ++ // CraftBukkit start
344 342 public TileEntity getTileEntity(BlockPosition blockposition) {
345 -@@ -612,6 +825,12 @@
343 ++ return getTileEntity(blockposition, true);
344 ++ }
345 ++ public Map<BlockPosition, TileEntity> capturedTileEntities = Maps.newHashMap();
346 ++
347 ++ @Nullable
348 ++ protected TileEntity getTileEntity(BlockPosition blockposition, boolean validate) {
349 ++ // CraftBukkit end
350 + if (isOutsideWorld(blockposition)) {
351 + return null;
346 352 } else if (!this.isClientSide && Thread.currentThread() != this.serverThread) {
347 353 return null;
348 354 } else {
349 355 + // CraftBukkit start
350 356 + if (capturedTileEntities.containsKey(blockposition)) {
351 357 + return capturedTileEntities.get(blockposition);
352 358 + }
353 359 + // CraftBukkit end
354 360 +
355 361 TileEntity tileentity = null;
356 362
357 363 if (this.tickingTileEntities) {
358 -@@ -646,6 +865,13 @@
364 +@@ -646,6 +872,13 @@
359 365 public void setTileEntity(BlockPosition blockposition, @Nullable TileEntity tileentity) {
360 366 if (!isOutsideWorld(blockposition)) {
361 367 if (tileentity != null && !tileentity.isRemoved()) {
362 368 + // CraftBukkit start
363 369 + if (captureBlockStates) {
364 370 + tileentity.setLocation(this, blockposition);
365 371 + capturedTileEntities.put(blockposition, tileentity);
366 372 + return;
367 373 + }
368 374 + // CraftBukkit end
369 375 if (this.tickingTileEntities) {
370 376 tileentity.setLocation(this, blockposition);
371 377 Iterator iterator = this.tileEntityListPending.iterator();
378 +@@ -670,7 +903,7 @@
379 + }
380 +
381 + public void removeTileEntity(BlockPosition blockposition) {
382 +- TileEntity tileentity = this.getTileEntity(blockposition);
383 ++ TileEntity tileentity = this.getTileEntity(blockposition, false); // CraftBukkit
384 +
385 + if (tileentity != null && this.tickingTileEntities) {
386 + tileentity.ab_();

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut