Skip to content

Commit e51b72a

Browse files
remove forgotten debug message; new version
1 parent 597feda commit e51b72a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
}
77

88
group "de.randombyte"
9-
version "1.7"
9+
version "1.7.5"
1010

1111
repositories {
1212
jcenter()

src/main/kotlin/de/randombyte/commandutils/CommandUtils.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class CommandUtils @Inject constructor(
4444
companion object {
4545
const val ID = "command-utils"
4646
const val NAME = "CommandUtils"
47-
const val VERSION = "1.7"
47+
const val VERSION = "1.7.5"
4848
const val AUTHOR = "RandomByte"
4949

5050
const val ROOT_PERMISSION = ID

src/main/kotlin/de/randombyte/commandutils/executeonserverstartup/ServerStartupListener.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class ServerStartupListener(val plugin: CommandUtils, val configAccessor: Config
1313
Task.builder()
1414
.delayTicks(1)
1515
.execute { ->
16-
configAccessor.get().executeOnServerStartup.commands.forEach { println(it); executeAsConsole(it) }
16+
configAccessor.get().executeOnServerStartup.commands.forEach { executeAsConsole(it) }
1717
}
1818
.submit(plugin)
1919
}

0 commit comments

Comments
 (0)