diff --git a/CommonCore/SQL/src/de/steamwar/sql/World.kt b/CommonCore/SQL/src/de/steamwar/sql/World.kt index 174feda2..18ef36e8 100644 --- a/CommonCore/SQL/src/de/steamwar/sql/World.kt +++ b/CommonCore/SQL/src/de/steamwar/sql/World.kt @@ -22,7 +22,7 @@ package de.steamwar.sql import de.steamwar.sql.internal.useDb import org.jetbrains.exposed.v1.core.and import org.jetbrains.exposed.v1.core.dao.id.EntityID -import org.jetbrains.exposed.v1.core.dao.id.UUIDTable +import org.jetbrains.exposed.v1.core.dao.id.java.UUIDTable import org.jetbrains.exposed.v1.core.eq import org.jetbrains.exposed.v1.core.not import org.jetbrains.exposed.v1.dao.Entity diff --git a/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java b/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java index ebfe998a..9a4502a3 100644 --- a/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java +++ b/VelocityCore/src/de/steamwar/velocitycore/commands/BuilderCloudCommand.java @@ -24,7 +24,6 @@ import de.steamwar.linkage.Linked; import de.steamwar.sql.SteamwarWorld; import de.steamwar.velocitycore.ArenaMode; import de.steamwar.velocitycore.ServerStarter; -import de.steamwar.velocitycore.ServerVersion; import de.steamwar.velocitycore.VelocityCore; import de.steamwar.command.PreviousArguments; import de.steamwar.command.SWCommand; @@ -120,7 +119,7 @@ public class BuilderCloudCommand extends SWCommand { @Override public Collection tabCompletes(Chatter sender, PreviousArguments previousArguments, String s) { ServerVersion version = getVersion(previousArguments, 1); - if (version == null) + if (version == null) { return Collections.emptyList(); }