We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6b04ba commit 430102eCopy full SHA for 430102e
src/main/kotlin/me/apyr/chatemotes/emote/local/LocalEmoteProvider.kt
@@ -129,6 +129,12 @@ class LocalEmoteProvider : EmoteProvider {
129
companion object {
130
// this hostname is used to serve the resource pack
131
private var publicServerHostname: String? = ChatEmotes.getInstance().settings.hostnameOverride()
132
+
133
+ init {
134
+ if (publicServerHostname != null) {
135
+ ChatEmotes.getLogger().info("Using public server hostname from config: $publicServerHostname")
136
+ }
137
138
}
139
140
private inner class LoginListener : Listener {
0 commit comments