From 32e938d2def66fa49a09758d2003a0be0f997df0 Mon Sep 17 00:00:00 2001 From: Selis Date: Wed, 21 Jun 2023 23:36:12 +0200 Subject: [PATCH] Makes ticket stuff less overprotective --- modular_chomp/code/modules/tickets/tickets.dm | 4 ---- 1 file changed, 4 deletions(-) diff --git a/modular_chomp/code/modules/tickets/tickets.dm b/modular_chomp/code/modules/tickets/tickets.dm index 15c83f4ee5..9d2f9c5c55 100644 --- a/modular_chomp/code/modules/tickets/tickets.dm +++ b/modular_chomp/code/modules/tickets/tickets.dm @@ -141,10 +141,6 @@ GLOBAL_DATUM_INIT(tickets, /datum/tickets, new) //Get a ticket given a ckey /datum/tickets/proc/CKey2ActiveTicket(ckey) - if(!usr?.client.holder || !has_mentor_powers(usr?.client)) - message_admins("[usr] has attempted to look up a ticket with CKEY [ckey] without sufficent privileges.") - return - for(var/datum/ticket/T as anything in active_tickets) if(T.initiator_ckey == ckey) return T