mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
15 lines
407 B
Plaintext
15 lines
407 B
Plaintext
/obj/screen/alert/open_ticket
|
|
icon = 'modular_chomp/icons/logo.dmi'
|
|
name = "Admin Chat Request"
|
|
desc = "A Administrator would like to chat with you. \
|
|
Click here to begin."
|
|
icon_state = "32x32"
|
|
|
|
/obj/screen/alert/open_ticket/Click()
|
|
if(!usr || !usr.client) return
|
|
|
|
// Open a new chat with the user
|
|
var/datum/ticket_chat/TC = new()
|
|
TC.T = usr.client.current_ticket
|
|
TC.tgui_interact(usr.client.mob)
|