Another runtime fixes batch. (#49209)

* Slime gland runtime fix.

* Logout ahelp logging runtime.

* Crafting non-items runtime.

* Turret building runtime.

* spacevine runtime.

* forcesay runtime fix.

* One less var
This commit is contained in:
AnturK
2020-02-10 10:50:36 -05:00
committed by GitHub
parent 0fb62da664
commit e40e22da6b
6 changed files with 16 additions and 15 deletions
+4 -4
View File
@@ -113,10 +113,10 @@ GLOBAL_DATUM_INIT(ahelp_tickets, /datum/admin_help_tickets, new)
//Dissasociate ticket
/datum/admin_help_tickets/proc/ClientLogout(client/C)
if(C.current_ticket)
C.current_ticket.AddInteraction("Client disconnected.")
SSblackbox.LogAhelp(C.current_ticket.id, "Disconnected", "Client disconnected", C.ckey)
C.current_ticket.initiator = null
C.current_ticket = null
var/datum/admin_help/T = C.current_ticket
T.AddInteraction("Client disconnected.")
SSblackbox.LogAhelp(T, "Disconnected", "Client disconnected", C.ckey)
T.initiator = null
//Get a ticket given a ckey
/datum/admin_help_tickets/proc/CKey2ActiveTicket(ckey)