diff --git a/src/main/kotlin/nl/voidcorp/discord/commands/fun/Nice.kt b/src/main/kotlin/nl/voidcorp/discord/commands/fun/Nice.kt index 72641fb..f9be824 100644 --- a/src/main/kotlin/nl/voidcorp/discord/commands/fun/Nice.kt +++ b/src/main/kotlin/nl/voidcorp/discord/commands/fun/Nice.kt @@ -8,7 +8,7 @@ import org.springframework.stereotype.Service import kotlin.random.Random @Service -class Nice : Command("nice", group = CommandGroup.FUN, helpMesage = "_nice_") { +class Nice : Command("nice", group = CommandGroup.FUN, helpMesage = "_nice_", aliases = listOf("69")) { override fun handle(event: CommandMessage): CommandResult { if (Random(System.currentTimeMillis()).nextInt(100) < 90) { event.reply("_nice_") diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 3255abc..ee4d040 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -8,4 +8,4 @@ spring.jpa.generate-ddl=true spring.jpa.hibernate.ddl-auto=create-drop spring.jpa.properties.hibernate.jdbc.lob.non_contextual_creation=true -ottobot.version=1.0 \ No newline at end of file +ottobot.version=1.1 \ No newline at end of file