From f8a55e7178e3bf30d0796b651bb154a7da382754 Mon Sep 17 00:00:00 2001 From: warriorstar-orion Date: Thu, 25 Jan 2024 14:24:03 -0500 Subject: [PATCH] Remove unused 'salvage captain' ID and related areas (#23822) * Remove unused 'salvage captain' ID * Just remove as it was never used --- code/__DEFINES/access_defines.dm | 1 - code/game/area/shuttle_areas.dm | 57 -------------------- code/game/jobs/access.dm | 2 +- code/game/objects/items/weapons/cards_ids.dm | 7 --- 4 files changed, 1 insertion(+), 66 deletions(-) diff --git a/code/__DEFINES/access_defines.dm b/code/__DEFINES/access_defines.dm index d70c203f562..ea67634a1ba 100644 --- a/code/__DEFINES/access_defines.dm +++ b/code/__DEFINES/access_defines.dm @@ -65,7 +65,6 @@ #define ACCESS_XENOARCH 65 #define ACCESS_PARAMEDIC 66 #define ACCESS_BLUESHIELD 67 -#define ACCESS_SALVAGE_CAPTAIN 69 // Salvage ship captain's quarters // #define ACCESS_MECHANIC 70 // AA07 2021-10-02 - Removed: Kept for history sake // #define ACCESS_PILOT 71 // AA07 2021-10-02 - Removed: Kept for history sake #define ACCESS_NTREP 73 diff --git a/code/game/area/shuttle_areas.dm b/code/game/area/shuttle_areas.dm index be9f5f44fb2..efd45956d8e 100644 --- a/code/game/area/shuttle_areas.dm +++ b/code/game/area/shuttle_areas.dm @@ -234,63 +234,6 @@ /area/shuttle/research/outpost icon_state = "shuttle" -/area/shuttle/salvage - name = "\improper Salvage Ship" - icon_state = "yellow" - -/area/shuttle/salvage/start - name = "\improper Middle of Nowhere" - icon_state = "yellow" - -/area/shuttle/salvage/arrivals - name = "\improper Space Station Auxiliary Docking" - icon_state = "yellow" - -/area/shuttle/salvage/derelict - name = "\improper Derelict Station" - icon_state = "yellow" - -/area/shuttle/salvage/djstation - name = "\improper Ruskie DJ Station" - icon_state = "yellow" - -/area/shuttle/salvage/north - name = "\improper North of the Station" - icon_state = "yellow" - -/area/shuttle/salvage/east - name = "\improper East of the Station" - icon_state = "yellow" - -/area/shuttle/salvage/south - name = "\improper South of the Station" - icon_state = "yellow" - -/area/shuttle/salvage/commssat - name = "\improper The Communications Satellite" - icon_state = "yellow" - -/area/shuttle/salvage/mining - name = "\improper South-West of the Mining Asteroid" - icon_state = "yellow" - -/area/shuttle/salvage/abandoned_ship - name = "\improper Abandoned Ship" - icon_state = "yellow" - parallax_movedir = WEST - -/area/shuttle/salvage/clown_asteroid - name = "\improper Clown Asteroid" - icon_state = "yellow" - -/area/shuttle/salvage/trading_post - name = "\improper Trading Post" - icon_state = "yellow" - -/area/shuttle/salvage/transit - name = "\improper hyperspace" - icon_state = "shuttle" - /area/shuttle/supply name = "Supply Shuttle" icon_state = "shuttle3" diff --git a/code/game/jobs/access.dm b/code/game/jobs/access.dm index 41701ab2931..cdc77fa8ad3 100644 --- a/code/game/jobs/access.dm +++ b/code/game/jobs/access.dm @@ -144,7 +144,7 @@ return list(ACCESS_SYNDICATE, ACCESS_SYNDICATE_LEADER, ACCESS_SYNDICATE_COMMAND) /proc/get_all_misc_access() - return list(ACCESS_SALVAGE_CAPTAIN, ACCESS_TRADE_SOL, ACCESS_CRATE_CASH, ACCESS_AWAY01) + return list(ACCESS_TRADE_SOL, ACCESS_CRATE_CASH, ACCESS_AWAY01) /proc/get_absolutely_all_accesses() return (get_all_accesses() | get_all_centcom_access() | get_all_syndicate_access() | get_all_misc_access()) diff --git a/code/game/objects/items/weapons/cards_ids.dm b/code/game/objects/items/weapons/cards_ids.dm index d949c064c27..556839fdb0f 100644 --- a/code/game/objects/items/weapons/cards_ids.dm +++ b/code/game/objects/items/weapons/cards_ids.dm @@ -717,13 +717,6 @@ name = "Prisoner [random_number]" registered_name = name -/obj/item/card/id/salvage_captain - name = "Captain's ID" - registered_name = "Captain" - icon_state = "centcom" - desc = "Finders, keepers." - access = list(ACCESS_SALVAGE_CAPTAIN) - /obj/item/card/id/medical name = "Medical ID" registered_name = "Medic"