mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-12-12 11:10:29 +00:00
Fix the other instance of the neighbour deprecation warning
This commit is contained in:
parent
46fa798797
commit
6bd11a5e4a
@ -43,7 +43,10 @@ final class BundledCapabilityProvider implements ICapabilityProvider
|
||||
if( capability == CAPABILITY_RECEIVER )
|
||||
{
|
||||
IBundledReceiver receiver = this.receiver;
|
||||
if( receiver == null ) receiver = this.receiver = tile::onNeighbourChange;
|
||||
if( receiver == null )
|
||||
{
|
||||
receiver = this.receiver = () -> tile.onNeighbourChange( tile.getPos().offset( side ) );
|
||||
}
|
||||
|
||||
return CAPABILITY_RECEIVER.cast( receiver );
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user