mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2025-12-27 10:41:42 +00:00
23 lines
1.0 KiB
Plaintext
23 lines
1.0 KiB
Plaintext
GLOBAL_REAL(SSmentor_tickets, /datum/controller/subsystem/tickets/mentor_tickets)
|
|
|
|
/datum/controller/subsystem/tickets/mentor_tickets/New()
|
|
NEW_SS_GLOBAL(SSmentor_tickets)
|
|
PreInit()
|
|
|
|
/datum/controller/subsystem/tickets/mentor_tickets
|
|
name = "Mentor Tickets"
|
|
ticket_system_name = "Mentor Tickets"
|
|
ticket_name = "Mentor Ticket"
|
|
span_class = "mentorhelp"
|
|
close_rights = R_MENTOR | R_ADMIN
|
|
offline_implications = "Mentor tickets will no longer be marked as stale. No immediate action is needed."
|
|
|
|
/datum/controller/subsystem/tickets/mentor_tickets/message_staff(var/msg)
|
|
message_mentorTicket(msg)
|
|
|
|
/datum/controller/subsystem/tickets/mentor_tickets/Initialize()
|
|
close_messages = list("<font color='red' size='3'><b>- [ticket_name] Closed -</b></font>",
|
|
"<span class='boldmessage'>Please try to be as descriptive as possible in mentor helps. Mentors do not know the full situation you're in and need more information to give you a helpful response.</span>",
|
|
"<span class='[span_class]'>Your [ticket_name] has now been closed.</span>")
|
|
return ..()
|