Skip to content

Commit df65eef

Browse files
fixed bug; new version
1 parent 23da9ed commit df65eef

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

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.3"
9+
version "1.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
@@ -43,7 +43,7 @@ class CommandUtils @Inject constructor(
4343
companion object {
4444
const val ID = "command-utils"
4545
const val NAME = "CommandUtils"
46-
const val VERSION = "1.4"
46+
const val VERSION = "1.5"
4747
const val AUTHOR = "RandomByte"
4848

4949
const val ROOT_PERMISSION = ID

src/main/kotlin/de/randombyte/commandutils/alias/CommandListener.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ class CommandListener(
4646
}
4747

4848
private val SendCommandEvent.wholeCommand: String
49-
get() = "$command $arguments"
49+
get() = "$command $arguments".trim()
5050
}

0 commit comments

Comments
 (0)