Commit 34174f0 1 parent c4add5c commit 34174f0 Copy full SHA for 34174f0
File tree 3 files changed +0
-19
lines changed
3 files changed +0
-19
lines changed Original file line number Diff line number Diff line change 4
4
// Items
5
5
// / Any wearable item
6
6
#define PROPERTY_WEARABLE span_tooltip (" Can be worn." , " Wearable" )
7
- // / Siemens == 0
8
- #define PROPERTY_NONCONDUCTIVE span_tooltip (" Does not conduct electricity." , " Dielectric" )
9
7
// / Tiny size
10
8
#define PROPERTY_TINY span_tooltip (" Can fit into any non-specialized storage container." , " Tiny" )
11
9
// / Small size
16
14
#define PROPERTY_HUGE span_tooltip (" Can not be placed into most storage containers." , " Huge" )
17
15
// / Gigantic size
18
16
#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" )
Original file line number Diff line number Diff line change @@ -372,9 +372,6 @@ DEFINE_INTERACTABLE(/obj/item)
372
372
if (slot_flags)
373
373
. += PROPERTY_WEARABLE
374
374
375
- if (siemens_coefficient == 0 )
376
- . += PROPERTY_NONCONDUCTIVE
377
-
378
375
/ obj / item/ get_mechanics_info()
379
376
. = .. ()
380
377
var /pronoun = gender == PLURAL ? " They" : " It"
Original file line number Diff line number Diff line change 146
146
147
147
return .. ()
148
148
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
-
157
149
/ obj / item/ clothing/ get_mechanics_info()
158
150
. = .. ()
159
151
var /pronoun = gender == PLURAL ? " They" : " It"
You can’t perform that action at this time.
0 commit comments