SPIGOT-8037: Comparators don't update from pushed composters and cauldrons

This commit is contained in:
md_5 2025-04-18 12:49:28 +10:00
parent 6f3a375ee6
commit d63a32ec56
No known key found for this signature in database
GPG Key ID: E8E901AC7C617C11

View File

@ -215,7 +215,7 @@
+ if ((i & 1) != 0) { + if ((i & 1) != 0) {
+ this.updateNeighborsAt(blockposition, iblockdata1.getBlock()); + this.updateNeighborsAt(blockposition, iblockdata1.getBlock());
+ if (!this.isClientSide && iblockdata.hasAnalogOutputSignal()) { + if (!this.isClientSide && iblockdata.hasAnalogOutputSignal()) {
+ this.updateNeighborsAt(blockposition, newBlock.getBlock()); + this.updateNeighbourForOutputSignal(blockposition, newBlock.getBlock());
+ } + }
+ } + }
+ +