From 72732c1f76120cc31204af243cdcccb5350a2fb5 Mon Sep 17 00:00:00 2001 From: L0pz <55806451+L0pz@users.noreply.github.com> Date: Wed, 22 Oct 2025 00:48:44 +0300 Subject: [PATCH] Louder drone pings (#93484) ## About The Pull Request Makes the drone ping alert appear larger in chat ## Why It's Good For The Game Drones have this nifty ping system to call each other to areas in need of droning, but the ping alert is extremely difficult to notice in chat. This makes it larger and louder. ## Changelog :cl: qol: Drone pings are now louder /:cl: --- code/modules/mob/living/basic/drone/verbs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/basic/drone/verbs.dm b/code/modules/mob/living/basic/drone/verbs.dm index 833d37a3c89..a66d17048fd 100644 --- a/code/modules/mob/living/basic/drone/verbs.dm +++ b/code/modules/mob/living/basic/drone/verbs.dm @@ -30,5 +30,5 @@ var/area/A = get_area(loc) if(alert_s && A && stat != DEAD) - var/msg = span_boldnotice("DRONE PING: [name]: [alert_s] priority alert in [A.name]!") + var/msg = span_big("DRONE PING: [name]: [alert_s] priority alert in [A.name]!") alert_drones(msg)