mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-30 16:38:22 +01:00
Fixed Vaurca Consular Officers not getting their mission fax. (#6901)
As reported here (fixes #6895) the Vaurca Consular Officer didn't get a mission fax, as (from what I understand) their custom post_equip function overwrites the one that sends the fax. The custom function now also sends this fax message.
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
|
||||
|
||||
/datum/outfit/job/representative/consular/zora/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
|
||||
if(!visualsOnly)
|
||||
if(H && !visualsOnly)
|
||||
if(isvaurca(H))
|
||||
var/r = H.r_skin
|
||||
var/g = H.g_skin
|
||||
@@ -58,3 +58,5 @@
|
||||
|
||||
H.change_skin_color(r, g, b)
|
||||
H.update_dna()
|
||||
addtimer(CALLBACK(src, .proc/send_representative_mission, H), 5 MINUTES)
|
||||
return TRUE
|
||||
|
||||
Reference in New Issue
Block a user