Skip to content

Commit

Permalink
remove forgotten debug message; new version
Browse files Browse the repository at this point in the history
  • Loading branch information
randombyte-developer committed Dec 3, 2017
1 parent 597feda commit e51b72a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group "de.randombyte"
version "1.7"
version "1.7.5"

repositories {
jcenter()
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/de/randombyte/commandutils/CommandUtils.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class CommandUtils @Inject constructor(
companion object {
const val ID = "command-utils"
const val NAME = "CommandUtils"
const val VERSION = "1.7"
const val VERSION = "1.7.5"
const val AUTHOR = "RandomByte"

const val ROOT_PERMISSION = ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class ServerStartupListener(val plugin: CommandUtils, val configAccessor: Config
Task.builder()
.delayTicks(1)
.execute { ->
configAccessor.get().executeOnServerStartup.commands.forEach { println(it); executeAsConsole(it) }
configAccessor.get().executeOnServerStartup.commands.forEach { executeAsConsole(it) }
}
.submit(plugin)
}
Expand Down

0 comments on commit e51b72a

Please sign in to comment.