Skip to content

Commit 9fb2ef3

Browse files
committed
Remove some unused classes, add a bit more logging
1 parent 645afdb commit 9fb2ef3

File tree

3 files changed

+3
-106
lines changed

3 files changed

+3
-106
lines changed

src/main/java/com/robotgryphon/compactmachines/block/BlockBaseTunnel.java

Lines changed: 0 additions & 93 deletions
This file was deleted.

src/main/java/com/robotgryphon/compactmachines/block/IMetaBlockName.java

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/main/java/com/robotgryphon/compactmachines/util/CompactMachineUtil.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ public static void teleportInto(ServerPlayerEntity serverPlayer, BlockPos machin
3939
}
4040

4141
ServerWorld compactWorld = serv.getWorld(Registration.COMPACT_DIMENSION);
42-
if (compactWorld == null)
42+
if (compactWorld == null) {
43+
CompactMachines.LOGGER.warn("Compact dimension not found; player attempted to enter machine.");
4344
return;
45+
}
4446

4547
CompactMachineTile tile = (CompactMachineTile) serverWorld.getTileEntity(machinePos);
4648
if (tile == null)

0 commit comments

Comments
 (0)