Skip to content

Commit

Permalink
Parenting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
UEDCommander committed Dec 27, 2023
1 parent e4219ef commit cb06dc4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
1 change: 1 addition & 0 deletions mods/hardsuits/code/rigs.dm
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/obj/item/clothing/head/helmet/space/rig/command/exploration/New()
. = ..()
species_restricted |= list(SPECIES_HUMAN,SPECIES_SKRELL,SPECIES_TAJARA,SPECIES_UNATHI,SPECIES_IPC)
sprite_sheets ^= list(
SPECIES_SKRELL,
Expand Down
18 changes: 18 additions & 0 deletions mods/hardsuits/code/void.dm
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//SECURITY
/obj/item/clothing/head/helmet/space/void/security/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -9,6 +10,7 @@
)

/obj/item/clothing/suit/space/void/security/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -18,6 +20,7 @@
)

/obj/item/clothing/head/helmet/space/void/security/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -27,6 +30,7 @@
)

/obj/item/clothing/suit/space/void/security/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -37,6 +41,7 @@

//ENGINEERING
/obj/item/clothing/head/helmet/space/void/engineering/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -46,6 +51,7 @@
)

/obj/item/clothing/suit/space/void/engineering/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -55,6 +61,7 @@
)

/obj/item/clothing/head/helmet/space/void/engineering/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -64,6 +71,7 @@
)

/obj/item/clothing/suit/space/void/engineering/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -74,6 +82,7 @@

//ATMOS
/obj/item/clothing/head/helmet/space/void/atmos/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -83,6 +92,7 @@
)

/obj/item/clothing/suit/space/void/atmos/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -92,6 +102,7 @@
)

/obj/item/clothing/head/helmet/space/void/atmos/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -101,6 +112,7 @@
)

/obj/item/clothing/suit/space/void/atmos/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -111,6 +123,7 @@

//MEDICAL
/obj/item/clothing/head/helmet/space/void/medical/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -120,6 +133,7 @@
)

/obj/item/clothing/suit/space/void/medical/alt/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI
)
Expand All @@ -130,6 +144,7 @@

//PILOT
/obj/item/clothing/head/helmet/space/void/pilot/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI,
SPECIES_SKRELL
Expand All @@ -151,6 +166,7 @@
)

/obj/item/clothing/suit/space/void/pilot/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI,
SPECIES_SKRELL
Expand All @@ -173,6 +189,7 @@

//EXPLORER
/obj/item/clothing/head/helmet/space/void/exploration/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI,
SPECIES_SKRELL
Expand All @@ -194,6 +211,7 @@
)

/obj/item/clothing/suit/space/void/exploration/New()
. = ..()
sprite_sheets ^= list(
SPECIES_UNATHI,
SPECIES_SKRELL
Expand Down

0 comments on commit cb06dc4

Please sign in to comment.