Skip to content

Commit

Permalink
fixed bug; new version
Browse files Browse the repository at this point in the history
  • Loading branch information
randombyte-developer committed Jul 24, 2017
1 parent 23da9ed commit df65eef
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.3"
version "1.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 @@ -43,7 +43,7 @@ class CommandUtils @Inject constructor(
companion object {
const val ID = "command-utils"
const val NAME = "CommandUtils"
const val VERSION = "1.4"
const val VERSION = "1.5"
const val AUTHOR = "RandomByte"

const val ROOT_PERMISSION = ID
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ class CommandListener(
}

private val SendCommandEvent.wholeCommand: String
get() = "$command $arguments"
get() = "$command $arguments".trim()
}

0 comments on commit df65eef

Please sign in to comment.