Skip to content

Commit 34174f0

Browse files
committed
I have decided I do not like these properties
1 parent c4add5c commit 34174f0

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

code/__DEFINES/examine_properties.dm

-8
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
//Items
55
/// Any wearable item
66
#define PROPERTY_WEARABLE span_tooltip("Can be worn.", "Wearable")
7-
/// Siemens == 0
8-
#define PROPERTY_NONCONDUCTIVE span_tooltip("Does not conduct electricity.", "Dielectric")
97
/// Tiny size
108
#define PROPERTY_TINY span_tooltip("Can fit into any non-specialized storage container.", "Tiny")
119
/// Small size
@@ -16,9 +14,3 @@
1614
#define PROPERTY_HUGE span_tooltip("Can not be placed into most storage containers.", "Huge")
1715
/// Gigantic size
1816
#define PROPERTY_GIGANTIC span_tooltip("Can not be picked up.", "Gigantic")
19-
20-
//Clothing
21-
/// STOPSPRESSUREDAMAGE clothing flag
22-
#define PROPERTY_SPACEPROOF_CLOTHING span_tooltip("Protects the wearer from vacuum environments.", "Vacuumproof")
23-
/// THICKMATERIAL clothing flag
24-
#define PROPERTY_THICKMATERIAL span_tooltip("Made of thick material.", "Thick")

code/game/objects/items.dm

-3
Original file line numberDiff line numberDiff line change
@@ -372,9 +372,6 @@ DEFINE_INTERACTABLE(/obj/item)
372372
if(slot_flags)
373373
. += PROPERTY_WEARABLE
374374

375-
if(siemens_coefficient == 0)
376-
. += PROPERTY_NONCONDUCTIVE
377-
378375
/obj/item/get_mechanics_info()
379376
. = ..()
380377
var/pronoun = gender == PLURAL ? "They" : "It"

code/modules/clothing/clothing.dm

-8
Original file line numberDiff line numberDiff line change
@@ -146,14 +146,6 @@
146146

147147
return ..()
148148

149-
/obj/item/clothing/examine_properties()
150-
. = ..()
151-
if(clothing_flags & STOPSPRESSUREDAMAGE)
152-
. += PROPERTY_SPACEPROOF_CLOTHING
153-
154-
if(clothing_flags & THICKMATERIAL)
155-
. += PROPERTY_THICKMATERIAL
156-
157149
/obj/item/clothing/get_mechanics_info()
158150
. = ..()
159151
var/pronoun = gender == PLURAL ? "They" : "It"

0 commit comments

Comments
 (0)