Skip to content

Commit

Permalink
Fix spacesuits with attachements being unremovable (#8330)
Browse files Browse the repository at this point in the history
* Fix voidsuit with attachements being unremovable

* Re-run tests
  • Loading branch information
SirRichardFrancis committed Oct 6, 2023
1 parent d8bc585 commit cb82ce0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/modules/clothing/spacesuits/spacesuits.dm
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
w_class = ITEM_SIZE_BULKY
gas_transfer_coefficient = 0.01
permeability_coefficient = 0.02
item_flags = STOPPRESSUREDAMAGE|THICKMATERIAL|COVER_PREVENT_MANIPULATION
item_flags = STOPPRESSUREDAMAGE|THICKMATERIAL|COVER_PREVENT_MANIPULATION|DRAG_AND_DROP_UNEQUIP
body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS
matter = list(MATERIAL_PLASTIC = 30, MATERIAL_STEEL = 10)
armor = list(
Expand All @@ -99,7 +99,7 @@
bad_type = /obj/item/clothing/suit/space
style = STYLE_NEG_HIGH
style_coverage = COVERS_WHOLE_TORSO_AND_LIMBS
var/list/supporting_limbs //If not-null, automatically splints breaks. Checked when removing the suit.
var/list/supporting_limbs //If not-null, automatically splints breaks. Checked when removing the suit
slowdown = HEAVY_SLOWDOWN * 0.5

/obj/item/clothing/suit/space/equipped(mob/M)
Expand Down

0 comments on commit cb82ce0

Please sign in to comment.