The network switch block now actually has the correct block entity

This commit is contained in:
Kilobyte22
2022-02-28 01:22:16 +01:00
parent 55bd407aef
commit 84d59082d2

View File

@@ -48,7 +48,7 @@ public final class NetworkSwitchBlock extends HorizontalDirectionalBlock impleme
@Nullable
@Override
public BlockEntity newBlockEntity(final BlockPos pos, final BlockState state) {
return BlockEntities.NETWORK_HUB.get().create(pos, state);
return BlockEntities.NETWORK_SWITCH.get().create(pos, state);
}
///////////////////////////////////////////////////////////////////