aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/dulkirmod/features/chat/ThrottleNotif.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/dulkirmod/features/chat/ThrottleNotif.kt')
-rw-r--r--src/main/kotlin/dulkirmod/features/chat/ThrottleNotif.kt23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main/kotlin/dulkirmod/features/chat/ThrottleNotif.kt b/src/main/kotlin/dulkirmod/features/chat/ThrottleNotif.kt
new file mode 100644
index 0000000..b17f301
--- /dev/null
+++ b/src/main/kotlin/dulkirmod/features/chat/ThrottleNotif.kt
@@ -0,0 +1,23 @@
+package dulkirmod.features.chat
+
+import dulkirmod.DulkirMod
+import dulkirmod.config.Config
+import dulkirmod.utils.Utils
+import net.minecraftforge.client.event.ClientChatReceivedEvent
+
+object ThrottleNotif {
+ private var lastThrottle : Long = 0
+ fun handle(event: ClientChatReceivedEvent, unformatted: String) {
+ if (unformatted == "This menu has been throttled! Please slow down..." && DulkirMod.config.throttleNotifier
+ && Utils.isInDungeons()) {
+ event.isCanceled = true;
+ if (!Config.throttleNotifierSpam && System.currentTimeMillis() - lastThrottle > 3000) {
+ DulkirMod.mc.thePlayer.sendChatMessage("/pc " + DulkirMod.config.customMessage)
+ }
+ else {
+ DulkirMod.mc.thePlayer.sendChatMessage("/pc " + DulkirMod.config.customMessage)
+ }
+ lastThrottle = System.currentTimeMillis()
+ }
+ }
+} \ No newline at end of file