Skip to content

Commit

Permalink
I don't like the blurry text on emergeny alert maptext
Browse files Browse the repository at this point in the history
  • Loading branch information
pali6 committed Dec 7, 2023
1 parent dff3c59 commit 9c18335
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/obj/item/device/pda2/modules.dm
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ TYPEINFO(/obj/item/device/pda_module)
if(isliving(user))
playsound(src, 'sound/items/security_alert.ogg', 60)
var/map_text = null
map_text = make_chat_maptext(user, "Emergency alert sent. Please assist this officer.", "font-family: 'Helvetica'; color: #D30000; font-size: 7px;", alpha = 215)
map_text = make_chat_maptext(user, "Emergency alert sent. Please assist this officer.", "color: #D30000; font-size: 6px;", alpha = 215)
for (var/mob/O in hearers(user))
O.show_message(assoc_maptext = map_text, just_maptext = TRUE)
user.visible_message(SPAN_ALERT("[user] presses a red button on the side of their [src.host]."),
Expand Down
2 changes: 1 addition & 1 deletion code/obj/item/device/pda2/smallprogs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ Code:
if(isliving(usr) && !remote)
playsound(src.master, alert_sound, 60)
var/map_text = null
map_text = make_chat_maptext(usr, "[alert_title] Emergency alert sent.", "font-family: 'Helvetica'; color: [alert_color]; font-size: 7px;", alpha = 215)
map_text = make_chat_maptext(usr, "[alert_title] Emergency alert sent.", "color: [alert_color]; font-size: 6px;", alpha = 215)
for (var/mob/O in hearers(usr))
O.show_message(assoc_maptext = map_text)
usr.visible_message(SPAN_ALERT("[usr] presses a red button on the side of their [src.master]."),
Expand Down

0 comments on commit 9c18335

Please sign in to comment.