diff --git a/.idea/dictionaries/wulkanat.xml b/.idea/dictionaries/wulkanat.xml
index 9612e8b..e8abc99 100644
--- a/.idea/dictionaries/wulkanat.xml
+++ b/.idea/dictionaries/wulkanat.xml
@@ -2,6 +2,7 @@
crosspost
+ hytale
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 65650db..f3ed3c5 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,11 +4,9 @@
-
-
+
-
-
+
@@ -53,7 +51,7 @@
@@ -61,6 +59,9 @@
+
+
+
@@ -89,7 +90,7 @@
-
+
@@ -106,7 +107,9 @@
- true
+ true
+ true
+ false
@@ -125,7 +128,9 @@
- true
+ true
+ true
+ false
@@ -144,7 +149,9 @@
- true
+ true
+ true
+ false
@@ -166,7 +173,6 @@
-
@@ -174,6 +180,7 @@
+
@@ -223,6 +230,18 @@
+
+
+
+
@@ -231,114 +250,6 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/build.gradle b/build.gradle
index 891210b..c135228 100644
--- a/build.gradle
+++ b/build.gradle
@@ -4,7 +4,7 @@ plugins {
}
group 'de.wulkanat'
-version '1.4.2'
+version '1.4.3'
repositories {
mavenCentral()
diff --git a/src/main/kotlin/de/wulkanat/DiscordRpc.kt b/src/main/kotlin/de/wulkanat/DiscordRpc.kt
index 94137b6..b4d3dfd 100644
--- a/src/main/kotlin/de/wulkanat/DiscordRpc.kt
+++ b/src/main/kotlin/de/wulkanat/DiscordRpc.kt
@@ -7,9 +7,11 @@ object DiscordRpc {
var jda: JDA? = null
fun updatePresence(available: Boolean) {
- jda ?: return
+ // jda ?: return
- jda!!.presence.activity = Activity.watching(if (available) Admin.message else Admin.offlineMessage)
- jda!!.presence.isIdle = !available
+ // jda!!.presence.activity = Activity.watching(if (available) Admin.message else Admin.offlineMessage)
+ // jda!!.presence.isIdle = !available
+ // noop
+ if (available) Admin.println("Back online") else Admin.error("Gone offline", "Can't reach Hytale server")
}
}
\ No newline at end of file