Improved world generation logs on collision (untested)
This commit is contained in:
parent
32cc0368ed
commit
70dddf493a
1 changed files with 3 additions and 2 deletions
|
@ -347,8 +347,9 @@ public class WorldGenStructure {
|
|||
jumpBlock.deploy(world, transformation);
|
||||
} else {
|
||||
if (WarpDriveConfig.LOGGING_WORLD_GENERATION && WarpDrive.isDev) {
|
||||
WarpDrive.logger.info(String.format("Deployment collision detected %s",
|
||||
Commons.format(world, targetX + jumpBlock.x, targetY + jumpBlock.y, targetZ + jumpBlock.z)));
|
||||
WarpDrive.logger.info(String.format("Deployment collision detected %s with %s during world generation, skipping this block...",
|
||||
Commons.format(world, targetX + jumpBlock.x, targetY + jumpBlock.y, targetZ + jumpBlock.z),
|
||||
blockAtTarget.getRegistryName()));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue