diff --git a/code/game/objects/items/devices/ticket_printer.dm b/code/game/objects/items/devices/ticket_printer.dm index 0cd4ef59695..6ab4f09dbbc 100644 --- a/code/game/objects/items/devices/ticket_printer.dm +++ b/code/game/objects/items/devices/ticket_printer.dm @@ -21,7 +21,7 @@ var/turf/our_turf = get_turf(user) - var/final = "

Nanotrasen Security Citation


This security citation has been issued to
[capitalize(ticket_name)]
Reason:
[details]
See your local representative at Central Command after the shift is over to resolve this issue.
" + var/final = "

Nanotrasen Security Citation


This security citation has been issued to
[capitalize(ticket_name)]
Reason:
[details]
See your local representative at Central Command after the shift is over to resolve this issue.
" var/obj/item/weapon/paper/sec_ticket/p = new /obj/item/weapon/paper/sec_ticket(our_turf) @@ -32,7 +32,7 @@ GLOB.security_ticket_counter++ log_and_message_admins("has issued '[ticket_name]' a security citation: \"[details]\"", user) last_print = world.time - playsound(src, 'sound/items/ticket_printer.ogg', vary = TRUE) + playsound(our_turf, 'sound/items/ticket_printer.ogg', vary = TRUE) /obj/item/weapon/paper/sec_ticket name = "Security Citation"