Skip to content

Commit

Permalink
1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Boy0000 committed Oct 21, 2023
1 parent 9d84976 commit 0806bec
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ class ChattyPlugin : JavaPlugin() {
DI.remove<ChattyContext>()
val chattyContext = object : ChattyContext {
override val plugin: ChattyPlugin = this@ChattyPlugin
override val config: ChattyConfig by config("config") { fromPluginPath(loadDefault = true) }
override val messages: ChattyMessages by config("messages") { fromPluginPath(loadDefault = true) }
override val emotefixer: DiscordEmoteFixer by config("emotefixer") { fromPluginPath(loadDefault = true) }
override val config: ChattyConfig by config("config", dataFolder.toPath(), ChattyConfig())
override val messages: ChattyMessages by config("messages", dataFolder.toPath(), ChattyMessages())
override val emotefixer: DiscordEmoteFixer by config("emotefixer", dataFolder.toPath(), DiscordEmoteFixer())
override val isPlaceholderApiLoaded: Boolean = Bukkit.getPluginManager().isPluginEnabled("PlaceholderAPI")
override val isDiscordSRVLoaded: Boolean = Bukkit.getPluginManager().isPluginEnabled("DiscordSRV")
}
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.mineinabyss
version=0.6
idofrontVersion=0.18.26
version=0.7
idofrontVersion=0.19.14
velocityVersion=3.2.0
coroutinesVersion=1.6.4
2 changes: 1 addition & 1 deletion gradle/chattyLibs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
geary = "0.25-SNAPSHOT"
geary = "0.26.0"
velocity = "3.2.0-SNAPSHOT"
discordsrv = "1.26.2"

Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 0806bec

Please sign in to comment.