From f75c9933794cdb9c7dff5486369636b18854b76d Mon Sep 17 00:00:00 2001 From: J10a1n15 <45315647+j10a1n15@users.noreply.github.com> Date: Tue, 10 Sep 2024 23:35:59 +0200 Subject: Fix: Last Server Chat Spam (#2495) --- src/main/java/at/hannibal2/skyhanni/features/misc/LastServers.kt | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/misc') diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/LastServers.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/LastServers.kt index 8bc2d96e4..7a59ef4f6 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/LastServers.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/LastServers.kt @@ -26,14 +26,18 @@ object LastServers { // Update the time of the current server if the player is still on the same server. // This is necessary because the player can be on the same server for a long time. // And if the player leaves the server and joins it again, it still warns the player. - lastServers[id] = SimpleTimeMark.now() + if (lastServerId == id) { + lastServers[id] = SimpleTimeMark.now() + return + } lastServers.entries.removeIf { it.value.passedSince() > config.warnTime.seconds } lastServers[id]?.passedSince()?.let { - ChatUtils.chat("§7You already joined this server §b${it.format()}§7 ago.") + ChatUtils.chat("§7You were already on this server §b${it.format()}§7 ago.") } ChatUtils.debug("Adding $id to last servers.") lastServerId = id + lastServers[id] = SimpleTimeMark.now() } private fun isEnabled() = LorenzUtils.inSkyBlock && config.enabled -- cgit