diff --git a/aurorastation.dme b/aurorastation.dme index 03d835bbfc5..df665eff2f5 100644 --- a/aurorastation.dme +++ b/aurorastation.dme @@ -1289,7 +1289,6 @@ #include "code\modules\client\preference_setup\loadout\loadout_gloves.dm" #include "code\modules\client\preference_setup\loadout\loadout_head.dm" #include "code\modules\client\preference_setup\loadout\loadout_mask.dm" -#include "code\modules\client\preference_setup\loadout\loadout_religion.dm" #include "code\modules\client\preference_setup\loadout\loadout_shoes.dm" #include "code\modules\client\preference_setup\loadout\loadout_smoking.dm" #include "code\modules\client\preference_setup\loadout\loadout_suit.dm" diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories.dm b/code/modules/client/preference_setup/loadout/loadout_accessories.dm index b26c66ac753..7b69d3bc284 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories.dm @@ -262,4 +262,8 @@ /datum/gear/accessory/sleeve_patch/New() ..() - gear_tweaks += gear_tweak_free_color_choice \ No newline at end of file + gear_tweaks += gear_tweak_free_color_choice + +/datum/gear/accessory/rosary + display_name = "rosary" + path = /obj/item/clothing/accessory/rosary \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout_religion.dm b/code/modules/client/preference_setup/loadout/loadout_religion.dm deleted file mode 100644 index f97eabcb461..00000000000 --- a/code/modules/client/preference_setup/loadout/loadout_religion.dm +++ /dev/null @@ -1,20 +0,0 @@ -/datum/gear/religion - display_name = "trinary perfection robes" - path = /obj/item/clothing/suit/trinary_robes - sort_category = "Religion" - -/datum/gear/religion/trinary/mask - display_name = "trinary perfection mask" - path = /obj/item/clothing/mask/trinary_mask - -/datum/gear/religion/trinary/cape - display_name = "trinary perfection cape" - path = /obj/item/clothing/accessory/poncho/trinary - -/datum/gear/religion/trinary/badge - display_name = "trinary perfection brooch" - path = /obj/item/clothing/accessory/badge/trinary - -/datum/gear/religion/rosary - display_name = "rosary" - path = /obj/item/clothing/accessory/rosary diff --git a/code/modules/client/preference_setup/loadout/loadout_suit.dm b/code/modules/client/preference_setup/loadout/loadout_suit.dm index 07bc43a22a9..983b58df746 100644 --- a/code/modules/client/preference_setup/loadout/loadout_suit.dm +++ b/code/modules/client/preference_setup/loadout/loadout_suit.dm @@ -173,10 +173,6 @@ display_name = "winter coat" path = /obj/item/clothing/suit/storage/hooded/wintercoat -/datum/gear/suit/winter/red - display_name = "winter coat, red" - path = /obj/item/clothing/suit/storage/hooded/wintercoat/red - /datum/gear/suit/winter/captain display_name = "winter coat, captain" path = /obj/item/clothing/suit/storage/hooded/wintercoat/captain diff --git a/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm b/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm index f00447836b7..83b3068d7ff 100644 --- a/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm +++ b/code/modules/client/preference_setup/loadout/loadout_xeno/machine.dm @@ -76,7 +76,6 @@ antenna["antenna, double"] = /obj/item/clothing/head/antenna/double antenna["antenna, left"] = /obj/item/clothing/head/antenna/double/left antenna["antenna, right"] = /obj/item/clothing/head/antenna/double/right - antenna["antenna, trinary perfection"] = /obj/item/clothing/head/antenna/trinary_halo gear_tweaks += new/datum/gear_tweak/path(antenna) gear_tweaks += list(gear_tweak_free_color_choice) @@ -103,4 +102,4 @@ idris["Brown Idris Unit trench coat"] = /obj/item/clothing/suit/armor/vest/idris/trenchcoat/brown idris["Black Idris Unit duster coat"] = /obj/item/clothing/suit/armor/vest/idris/duster/black idris["Brown Idris Unit duster coat"] = /obj/item/clothing/suit/armor/vest/idris/duster/brown - gear_tweaks += new/datum/gear_tweak/path(idris) + gear_tweaks += new/datum/gear_tweak/path(idris) \ No newline at end of file diff --git a/code/modules/clothing/head/misc.dm b/code/modules/clothing/head/misc.dm index 92f430a558f..13400a9bd3a 100644 --- a/code/modules/clothing/head/misc.dm +++ b/code/modules/clothing/head/misc.dm @@ -593,12 +593,6 @@ icon_state = "right_robot_antennae" item_state = "right_robot_antennae" -/obj/item/clothing/head/antenna/trinary_halo - name = "trinary perfection antenna" - desc = "A decorative antenna that is commonly worn by IPCs who serve the Trinary Perfection. It resembles a golden gear." - icon_state = "trinary_halo" - item_state = "trinary_halo" - /obj/item/clothing/head/fake_culthood name = "occultist hood" icon_state = "culthood" diff --git a/code/modules/clothing/masks/miscellaneous.dm b/code/modules/clothing/masks/miscellaneous.dm index 8c2c748de77..34935377e31 100644 --- a/code/modules/clothing/masks/miscellaneous.dm +++ b/code/modules/clothing/masks/miscellaneous.dm @@ -92,17 +92,6 @@ flags_inv = HIDEFACE body_parts_covered = 0 -/obj/item/clothing/mask/trinary_mask - name = "trinary perfection mask" - desc = "A simple lace mask worn by IPCs and organics alike while within the churches of the Trinary Perfection." - icon_state = "trinary_mask" - item_state = "trinary_mask" - w_class = ITEMSIZE_SMALL - body_parts_covered = FACE - item_flags = FLEXIBLEMATERIAL - down_body_parts_covered = null - adjustable = TRUE - //scarves (fit in in mask slot) //None of these actually have on-mob sprites... /obj/item/clothing/mask/bluescarf @@ -221,7 +210,7 @@ return if(user.get_equipped_item(slot_wear_mask) != src) return - + eye.possess(user) to_chat(eye.owner, span("notice", "You feel disoriented for a moment as your mind connects to the camera network.")) diff --git a/code/modules/clothing/suits/hoodies.dm b/code/modules/clothing/suits/hoodies.dm index 79ad6951548..68d131209e6 100644 --- a/code/modules/clothing/suits/hoodies.dm +++ b/code/modules/clothing/suits/hoodies.dm @@ -102,11 +102,6 @@ min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE canremove = 0 -/obj/item/clothing/suit/storage/hooded/wintercoat/red - name = "red winter coat" - icon_state = "coatred" - item_state = "coatred" - /obj/item/clothing/suit/storage/hooded/wintercoat/captain name = "captain's winter coat" icon_state = "coatcaptain" diff --git a/code/modules/clothing/suits/miscellaneous.dm b/code/modules/clothing/suits/miscellaneous.dm index 098d1958651..44be098b05d 100644 --- a/code/modules/clothing/suits/miscellaneous.dm +++ b/code/modules/clothing/suits/miscellaneous.dm @@ -154,12 +154,6 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO flags_inv = HIDEJUMPSUIT -/obj/item/clothing/suit/trinary_robes - name = "trinary perfection robe" - desc = "Robes worn by those who serve The Trinary Perfection." - icon_state = "trinary_robes" - item_state = "trinary_robes" - /* * Misc */ diff --git a/code/modules/clothing/under/accessories/accessory.dm b/code/modules/clothing/under/accessories/accessory.dm index 94d9ae9ca86..092ad2ce56b 100644 --- a/code/modules/clothing/under/accessories/accessory.dm +++ b/code/modules/clothing/under/accessories/accessory.dm @@ -613,13 +613,6 @@ item_state = "galaxycape" overlay_state = "galaxycape" -/obj/item/clothing/accessory/poncho/trinary - name = "trinary perfection cape" - desc = "A brilliant red and brown cape, commonly worn by those who serve the Trinary Perfection." - icon_state = "trinary_cape" - item_state = "trinary_cape" - overlay_state = "trinary_cape" - //tau ceti legion ribbons /obj/item/clothing/accessory/legion name = "seniority ribbons" diff --git a/code/modules/clothing/under/accessories/badges.dm b/code/modules/clothing/under/accessories/badges.dm index d57191fdd05..f2f43cb6a9b 100644 --- a/code/modules/clothing/under/accessories/badges.dm +++ b/code/modules/clothing/under/accessories/badges.dm @@ -227,11 +227,4 @@ desc = "A descriptive identification badge with the holder's credentials displayed with a harsh digital glow." icon_state = "intelbadge" overlay_state = "intelbadge" - badge_string = null - -/obj/item/clothing/accessory/badge/trinary - name = "trinary perfection brooch" - desc = "A metal brooch worn by those who serve or follow the beliefs of the Trinary Perfection. It resembles a gear with a triangle inside." - icon_state = "trinary_badge" - overlay_state = "trinary_badge" - badge_string = null \ No newline at end of file + badge_string = null \ No newline at end of file diff --git a/code/modules/reagents/reagent_containers.dm b/code/modules/reagents/reagent_containers.dm index 8d31a9ff9e5..93ba24563d2 100644 --- a/code/modules/reagents/reagent_containers.dm +++ b/code/modules/reagents/reagent_containers.dm @@ -74,7 +74,7 @@ return if(standard_splash_obj(user, target)) return - + if(istype(target, /obj/)) var/obj/O = target if(!(O.flags & NOBLUDGEON) && reagents) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 90ac7838cbe..01a999c0194 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -4,7 +4,7 @@ /obj/item/reagent_containers/hypospray name = "hypospray" - desc = "The Zeng-Hu Pharmaceuticals hypospray is a sterile, air-needle autoinjector for administration of drugs to patients." + desc = "The DeForest Medical Corporation hypospray is a sterile, air-needle autoinjector for administration of drugs to patients." icon = 'icons/obj/syringe.dmi' item_state = "hypo" icon_state = "hypo" @@ -15,24 +15,13 @@ flags = OPENCONTAINER slot_flags = SLOT_BELT center_of_mass = null - drop_sound = 'sound/items/drop/bottle.ogg' var/armorcheck = 1 var/time = 3 SECONDS - var/has_level_sprites = TRUE matter = list("glass" = 400, DEFAULT_WALL_MATERIAL = 200) -/obj/item/reagent_containers/hypospray/Initialize() - . = ..() - update_icon() - -/obj/item/reagent_containers/hypospray/on_reagent_change() - update_icon() - return - /obj/item/reagent_containers/hypospray/cmo name = "premium hypospray" - desc = "The Zeng-Hu Pharmaceuticalsn premium hypospray is a cutting-edge, sterile, air-needle autoinjector for rapid administration of drugs to patients." - item_state = "cmo_hypo" + desc = "The DeForest Medical Corporation premium hypospray is a cutting-edge, sterile, air-needle autoinjector for rapid administration of drugs to patients." volume = 30 time = 0 @@ -47,22 +36,6 @@ if(!do_mob(user, M, inj_time)) return 1 -/obj/item/reagent_containers/hypospray/update_icon() - if(!has_level_sprites) - return - var/percent = round((reagents.total_volume / 10) * 100) - switch(percent) - if(0 to 25) - icon_state = "[item_state]" - if(26 to 50) - icon_state = "[item_state]_25" - if(51 to 75) - icon_state = "[item_state]_50" - if(76 to 99) - icon_state = "[item_state]_75" - if(100 to INFINITY) - icon_state = "[item_state]_100" - /obj/item/reagent_containers/hypospray/afterattack(var/mob/M, var/mob/user, proximity) if (!istype(M)) @@ -101,7 +74,6 @@ amount_per_transfer_from_this = 5 volume = 5 time = 0 - has_level_sprites = FALSE /obj/item/reagent_containers/hypospray/autoinjector/Initialize() . =..() @@ -196,7 +168,6 @@ volume = 20 armorcheck = 0 time = 0 - has_level_sprites = FALSE /obj/item/reagent_containers/hypospray/combat/Initialize() . = ..() diff --git a/html/changelog.html b/html/changelog.html index 703534dc415..6e45e1329fe 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -35,22 +35,6 @@ -->