No drop items now lose their nodrop if dropped

This commit is contained in:
joep van der velden
2019-07-29 00:03:18 +02:00
parent fba32dd761
commit 402d1ef131
12 changed files with 38 additions and 11 deletions
+5 -1
View File
@@ -11,4 +11,8 @@
min_cold_protection_temperature = GLOVES_MIN_TEMP_PROTECT
heat_protection = HANDS
max_heat_protection_temperature = GLOVES_MAX_TEMP_PROTECT
transfer_prints = FALSE
transfer_prints = FALSE
/obj/item/clothing/gloves/space_ninja/dropped()
. = ..()
flags &= ~NODROP
+5 -1
View File
@@ -7,4 +7,8 @@
item_state = "s-ninja_hood"
armor = list(melee = 60, bullet = 60, laser = 45, energy = 15, bomb = 30, bio = 30, rad = 25)
unacidable = 1
blockTracking = 1
blockTracking = 1
/obj/item/clothing/head/helmet/space/space_ninja/dropped()
. = ..()
flags &= ~NODROP
+5 -1
View File
@@ -28,4 +28,8 @@ Contents:
/obj/item/clothing/mask/gas/space_ninja/Destroy()
QDEL_NULL(voice_changer)
return ..()
return ..()
/obj/item/clothing/mask/gas/voice/space_ninja/dropped()
. = ..()
flags &= ~NODROP
+6 -1
View File
@@ -9,4 +9,9 @@
cold_protection = FEET
min_cold_protection_temperature = SHOES_MIN_TEMP_PROTECT
heat_protection = FEET
max_heat_protection_temperature = SHOES_MAX_TEMP_PROTECT
max_heat_protection_temperature = SHOES_MAX_TEMP_PROTECT
/obj/item/clothing/shoes/space_ninja/dropped()
. = ..()
flags &= ~NODROP
+5 -1
View File
@@ -86,4 +86,8 @@ Contents:
suitShoes = null
suitOccupant = null
return 1
return 1
/obj/item/clothing/suit/space/space_ninja/dropped()
. = ..()
flags &= ~NODROP