Skip to content

Commit 75a3fe6

Browse files
committed
Fix bug where large machines would be disallowed by CM tile entity type
1 parent eb0fed7 commit 75a3fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/robotgryphon/compactmachines/core/Registration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public class Registration {
113113
public static final RegistryObject<TileEntityType<CompactMachineTile>> MACHINE_TILE_ENTITY = TILES_ENTITIES.register("compact_machine", () ->
114114
TileEntityType.Builder.create(CompactMachineTile::new,
115115
MACHINE_BLOCK_TINY.get(), MACHINE_BLOCK_SMALL.get(), MACHINE_BLOCK_NORMAL.get(),
116-
MACHINE_BLOCK_NORMAL.get(), MACHINE_BLOCK_GIANT.get(), MACHINE_BLOCK_MAXIMUM.get())
116+
MACHINE_BLOCK_LARGE.get(), MACHINE_BLOCK_GIANT.get(), MACHINE_BLOCK_MAXIMUM.get())
117117
.build(null));
118118

119119
// ================================================================================================================

0 commit comments

Comments
 (0)