Skip to content

Commit

Permalink
Version bumped to 3.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ileukocyte committed Jul 21, 2022
1 parent bfec16a commit b3db540
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ plugins {
}

group = "io.ileukocyte"
version = Version(major = 3, minor = 4, patch = 2)
version = Version(major = 3, minor = 4, patch = 3)

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/io/ileukocyte/hibernum/Immutable.kt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object Immutable {
as KotlinJsr223ScriptEngineImpl

@JvmField
val VERSION = Version(major = 3, minor = 4, patch = 2)
val VERSION = Version(major = 3, minor = 4, patch = 3)

@JvmField
val USER_AGENT = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:90.0) Gecko/20100101 Firefox/90.0" //"User-Agent: DiscordBot ($GITHUB_REPOSITORY, $VERSION)"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class AboutCommand : TextCommand {
}

field {
title = "Command Statistics"
title = "Discord Statistics"
description = buildString {
appendLine("**Total Commands**: ${CommandHandler.size}" +
commandCount.filterNotNull().takeUnless { it.isEmpty() }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ class PruneCommand : SlashOnlyCommand {

event.channel.sendWarning("${event.user.asMention} has used the `$name` command!") {
text = "This message will self-delete in 5 seconds"
}.queue { it.delete().queueAfter(5, TimeUnit.SECONDS, {}) {} }
}.queue { it.delete().queueAfter(5, TimeUnit.SECONDS, null) {} }
}

private fun getResponse(
Expand Down

0 comments on commit b3db540

Please sign in to comment.