From 6d7d36a0fcc5ec5d1aaeac71ff1a2865f4e7fa79 Mon Sep 17 00:00:00 2001 From: coldud13 Date: Mon, 15 May 2023 18:17:36 +1000 Subject: [PATCH] [MANUAL MIRROR] Adds message clarifying that you've been KICKED from the game when th (#21136) Adds message clarifying that you've been KICKED from the game when the keysend flood autokick triggers. (#72083) There is now a message clarifying that you've been KICKED from the game when the keysend flood autokick triggers. Co-authored-by: ShizCalev --- code/modules/keybindings/bindings_client.dm | 1 + 1 file changed, 1 insertion(+) diff --git a/code/modules/keybindings/bindings_client.dm b/code/modules/keybindings/bindings_client.dm index 9c3a7e0ac80..0aa0fd6952e 100644 --- a/code/modules/keybindings/bindings_client.dm +++ b/code/modules/keybindings/bindings_client.dm @@ -23,6 +23,7 @@ keysend_tripped = TRUE next_keysend_trip_reset = world.time + (2 SECONDS) else + to_chat(src, span_userdanger("Flooding keysends! This could have been caused by lag, or due to a plugged-in game controller. You have been disconnected from the server automatically.")) log_admin("Client [ckey] was just autokicked for flooding keysends; likely abuse but potentially lagspike.") message_admins("Client [ckey] was just autokicked for flooding keysends; likely abuse but potentially lagspike.") qdel(src)