Skip to content

Commit db25704

Browse files
committed
...
1 parent fc82ea9 commit db25704

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/mcmoddev/orespawn/commands/ClearChunkCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public void execute(MinecraftServer server, ICommandSender sender, String[] args
3939
for (int z = chunkPos.getZStart(); z <= chunkPos.getZEnd(); z++) {
4040
BlockPos pos = new BlockPos(x, y, z);
4141
Block block = player.world.getBlockState(pos).getBlock();
42-
42+
4343
if (OreSpawnWorldGen.getSpawnBlocks().contains(block)) {
4444
player.world.setBlockToAir(pos);
4545
}

0 commit comments

Comments
 (0)