Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
xGinko committed Jan 2, 2024
1 parent 8071f9a commit 9a741cf
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ private void onCreate(VehicleCreateEvent event) {
entity.getScheduler().run(plugin, kill -> {
entity.remove();
if (logIsEnabled) LogUtils.moduleLog(Level.INFO, name(), "Removed vehicle " + entity.getType()
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY() + " z:" + entity.getLocation().getZ()
+ ", because reached limit of " + maxVehiclesPerChunk);
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY()
+ " z:" + entity.getLocation().getZ() + ", because reached limit of " + maxVehiclesPerChunk);
}, null);

continue;
Expand All @@ -104,8 +104,8 @@ private void onCreate(VehicleCreateEvent event) {
entity.getScheduler().run(plugin, kill -> {
entity.remove();
if (logIsEnabled) LogUtils.moduleLog(Level.INFO, name(), "Removed vehicle " + entity.getType()
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY() + " z:" + entity.getLocation().getZ()
+ ", because reached limit of " + maxVehiclesPerChunk);
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY()
+ " z:" + entity.getLocation().getZ() + ", because reached limit of " + maxVehiclesPerChunk);
}, null);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,8 @@ private void onCreate(VehicleCreateEvent event) {

entity.remove();
if (logIsEnabled) LogUtils.moduleLog(Level.INFO, name(), "Removed vehicle " + entity.getType()
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY() + " z:" + entity.getLocation().getZ()
+ ", because reached limit of " + maxVehiclesPerChunk);
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY()
+ " z:" + entity.getLocation().getZ() + ", because reached limit of " + maxVehiclesPerChunk);

continue;
}
Expand All @@ -91,8 +91,8 @@ private void onCreate(VehicleCreateEvent event) {

entity.remove();
if (logIsEnabled) LogUtils.moduleLog(Level.INFO, name(), "Removed vehicle " + entity.getType()
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY() + " z:" + entity.getLocation().getZ()
+ ", because reached limit of " + maxVehiclesPerChunk);
+ " at x:" + entity.getLocation().getX() + " y:" + entity.getLocation().getY()
+ " z:" + entity.getLocation().getZ() + ", because reached limit of " + maxVehiclesPerChunk);
}
}
}
Expand Down

0 comments on commit 9a741cf

Please sign in to comment.