Changes a bunch of New()s to Initialize()s (#61626)

This commit is contained in:
Jordan Brown
2021-09-26 03:15:49 -04:00
committed by GitHub
parent 79b8047cd6
commit ccb75a554f
23 changed files with 64 additions and 60 deletions
+2 -2
View File
@@ -142,9 +142,9 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
/obj/effect/statclick/ticket_list
var/current_state
/obj/effect/statclick/ticket_list/New(loc, name, state)
/obj/effect/statclick/ticket_list/Initialize(mapload, name, state)
. = ..()
current_state = state
..()
/obj/effect/statclick/ticket_list/Click()
GLOB.ahelp_tickets.BrowseTickets(current_state)