Eridani ERT Access Fix (#12340)

This commit is contained in:
WickedCybs
2021-08-16 01:17:01 -03:00
committed by GitHub
parent 118a6c68a2
commit 498be943bc
3 changed files with 11 additions and 2 deletions
+3
View File
@@ -37,6 +37,9 @@
/obj/item/grenade/flashbang = 1
)
/datum/outfit/admin/ert/ap_eridani/get_id_access()
return get_distress_access()
/datum/outfit/admin/ert/ap_eridani/post_equip(mob/living/carbon/human/H, visualsOnly = FALSE)
. = ..()
if(visualsOnly)
+2 -2
View File
@@ -525,9 +525,9 @@ var/const/NO_EMAG_ACT = -50
overlay_state = "erisec_card"
/obj/item/card/id/distress/ap_eridani/New()
access = list(access_distress, access_maint_tunnels, access_external_airlocks, access_security, access_medical, access_medical_equip)
access = get_distress_access()
..()
/obj/item/card/id/distress/iac
name = "\improper Interstellar Aid Corps ID"
assignment = "Interstellar Aid Corps Responder"
+6
View File
@@ -0,0 +1,6 @@
author: WickedCybs
delete-after: True
changes:
- bugfix: "Eridani ERT responders got ID cards with no additional access added, which wasn't intentional. They get standard distress access now and the Lead can actually use their hardsuit."