Merged most recent master.

This commit is contained in:
Sebastian Hartte
2020-08-06 00:46:20 +02:00
parent 3c737d8d1e
commit 89058448cf
20 changed files with 165 additions and 233 deletions
@@ -117,7 +117,7 @@ public class CableAnchorPart implements IPart {
}
@Override
public void onneighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
public void onNeighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
}
@@ -134,7 +134,7 @@ public abstract class SharedStorageBusPart extends UpgradeablePart
}
@Override
public void onneighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
public void onNeighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
if (pos.offset(this.getSide().getFacing()).equals(neighbor)) {
this.resetCache(false);
}
@@ -255,7 +255,7 @@ public class StorageBusPart extends UpgradeablePart
}
@Override
public void onneighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
public void onNeighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
if (pos.offset(this.getSide().getFacing()).equals(neighbor)) {
final BlockEntity te = w.getBlockEntity(neighbor);
@@ -99,7 +99,7 @@ public class ToggleBusPart extends BasicStatePart {
}
@Override
public void onneighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
public void onNeighborUpdate(BlockView w, BlockPos pos, BlockPos neighbor) {
final boolean oldHasRedstone = this.hasRedstone;
this.hasRedstone = this.getHost().hasRedstone(this.getSide());