You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code/modules/admin/verbs/admin.dm
+5-3
Original file line number
Diff line number
Diff line change
@@ -181,10 +181,12 @@ monkestation end */
181
181
qdel(W)
182
182
M.regenerate_icons()
183
183
184
-
log_admin("[key_name(usr)] made [key_name(M)] drop everything!")
185
-
var/msg="[key_name_admin(usr)] made [ADMIN_LOOKUPFLW(M)] drop everything!"
186
-
message_admins(msg)
184
+
// MONKESTATION EDIT START - tgui tickets
185
+
var/msg="[key_name(usr)] made [key_name(M)] drop everything!"
186
+
log_admin(msg)
187
+
message_admins("[key_name_admin(usr)] made [ADMIN_LOOKUPFLW(M)] drop everything!")
187
188
admin_ticket_log(M, msg)
189
+
// MONKESTATION EDIT END
188
190
SSblackbox.record_feedback("tally", "admin_verb", 1, "Drop Everything") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
SSblackbox.record_feedback("tally", "admin_verb", 1, "Subtle Message") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
SSblackbox.record_feedback("tally", "admin_verb", 1, "Direct Narrate") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc!
log_admin("[key_name(usr)] has toggled [key_name(mob)]'s nodamage to [had_trait ?"Off":"On"]")
175
+
// MONKESTATION EDIT START - tgui tickets
176
+
var/log_msg="[key_name(usr)] has toggled [key_name(mob)]'s nodamage to [had_trait ?"Off":"On"]"
177
+
log_admin()
176
178
var/msg="[key_name_admin(usr)] has toggled [ADMIN_LOOKUPFLW(mob)]'s nodamage to [had_trait ?"Off":"On"]"
177
179
message_admins(msg)
178
-
admin_ticket_log(mob, msg)
180
+
admin_ticket_log(mob, log_msg)
181
+
// MONKESTATION EDIT END
179
182
SSblackbox.record_feedback("nested tally", "admin_toggle", 1, list("Godmode", "[had_trait ?"Disabled":"Enabled"]")) // If you are copy-pasting this, ensure the 4th parameter is unique to the new proc!
180
183
181
184
/*
@@ -215,7 +218,7 @@ Traitors and the like can also be revived with the previous role mostly intact.
215
218
to_chat(new_monkey, "You have been fully respawned. Enjoy the game.", confidential =TRUE)
216
219
var/msg= span_adminnotice("[key_name_admin(usr)] has respawned [new_monkey.key] as a filthy monkey.")
217
220
message_admins(msg)
218
-
admin_ticket_log(new_monkey, msg)
221
+
admin_ticket_log(new_monkey, "[key_name(usr)] has respawned [new_monkey.key] as a filthy monkey.") // MONKESTATION EDIT - tgui tickets
AddInteraction("<font color='green'>Resolved by [key_name].</font>", player_message ="<font color='green'>Ticket resolved!</font>")
528
+
AddInteraction("Resolved by [key_name(usr)].", "Ticket resolved.") // Monkestation edit: datum ticket interactions
523
529
to_chat(initiator, span_adminhelp("Your ticket has been resolved by an admin. The Adminhelp verb will be returned to you shortly."), confidential =TRUE)
0 commit comments