Skip to content

Commit

Permalink
🚀 no comment
Browse files Browse the repository at this point in the history
  • Loading branch information
asoji committed Nov 27, 2024
1 parent 4dcaa6d commit 1f2f823
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ allprojects {
apply(plugin = "java")
apply(plugin = "kotlin")
apply(plugin = "org.jetbrains.kotlin.plugin.serialization")
apply(plugin = "idea")

repositories {
mavenCentral()
Expand All @@ -69,6 +70,7 @@ allprojects {
maven("https://mvn.devos.one/snapshots")
}


dependencies {
if (project.name != "yiski-dependencies") {
if (project.name != "yiski-common" && !project.name.startsWith("yiski-module")) {
Expand All @@ -82,6 +84,8 @@ allprojects {
}
}



tasks {
// Write the version to the yiski.metadata.toml
processResources {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/one/devos/yiski/runner/Bootstrapper.kt
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ internal object Bootstrapper {
jda.listener<ReadyEvent> {
try {
logger.info { "Yiski started!" }
aviation.syncCommandsForTestGuilds(jda)
// aviation.syncCommandsForTestGuilds(jda)
aviation.syncCommands(jda)
} catch (e: Exception) {
logger.error(e) {
Expand Down
8 changes: 4 additions & 4 deletions yiski3/src/main/kotlin/one/devos/yiski3/commands/silly/Osu.kt
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ class Osu : Scaffold {

color = EmbedHelpers.infoColor()
thumbnail = "https://a.ppy.sh/${user.id}"
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both.")
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both. osu!lazer scores will be grabbed once osuv2kt is done.")

}).await()

Expand Down Expand Up @@ -142,7 +142,7 @@ class Osu : Scaffold {

color = EmbedHelpers.infoColor()
thumbnail = "https://a.ppy.sh/${user.id}"
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both.")
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both. osu!lazer scores will be grabbed once osuv2kt is done.")
}).await()
} catch (e: OsuAPIException) {
response.editOriginalEmbeds(Embed {
Expand Down Expand Up @@ -205,7 +205,7 @@ class Osu : Scaffold {

color = EmbedHelpers.infoColor()
thumbnail = "https://a.ppy.sh/${user.id}"
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both.")
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both. osu!lazer scores will be grabbed once osuv2kt is done.")
}).await()
} catch (e: OsuAPIException) {
response.editOriginalEmbeds(Embed {
Expand Down Expand Up @@ -268,7 +268,7 @@ class Osu : Scaffold {

color = EmbedHelpers.infoColor()
thumbnail = "https://a.ppy.sh/${user.id}"
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both.")
footer("Note that top scores on this are for osu!stable and not osu!lazer. Everything else is both. osu!lazer scores will be grabbed once osuv2kt is done.")
}).await()
} catch (e: OsuAPIException) {
response.editOriginalEmbeds(Embed {
Expand Down

0 comments on commit 1f2f823

Please sign in to comment.