diff --git a/monkestation/code/modules/donator/code/item/clothing.dm b/monkestation/code/modules/donator/code/item/clothing.dm index 8ff79c1f94cc..128c8d908d9b 100644 --- a/monkestation/code/modules/donator/code/item/clothing.dm +++ b/monkestation/code/modules/donator/code/item/clothing.dm @@ -534,5 +534,4 @@ name = "centcom jacket" desc = "A varsity jacket in design of centcom! It seems well made." body_parts_covered = CHEST|GROIN|ARMS - armor = /datum/armor/wintercoat_centcom min_cold_protection_temperature = FIRE_SUIT_MIN_TEMP_PROTECT diff --git a/monkestation/code/modules/ranching/chickens/misc/gary.dm b/monkestation/code/modules/ranching/chickens/misc/gary.dm index 2d5c8e67ce85..c875890271da 100644 --- a/monkestation/code/modules/ranching/chickens/misc/gary.dm +++ b/monkestation/code/modules/ranching/chickens/misc/gary.dm @@ -5,7 +5,7 @@ desc = "Gary the Crow. An inquisitive, yet cruel barterer." icon_suffix = "crow_gary" icon_state = "crow_gary" - pass_flags = parent_type::pass_flags | PASSGRILLE | PASSFLAPS + pass_flags = parent_type::pass_flags | PASSGRILLE | PASSFLAPS | PASSDOORS ai_controller = /datum/ai_controller/chicken/gary mutation_list = list() @@ -37,9 +37,8 @@ roundend_callback = CALLBACK(src, PROC_REF(Write_Memory)) SSticker.OnRoundend(roundend_callback) Read_Memory() - AddComponent(/datum/component/simple_access, ACCESS_MAINT_TUNNELS) // gary actually balls AddComponent(/datum/component/regenerator) - add_traits(list(TRAIT_SHOCKIMMUNE, TRAIT_GOES_THROUGH_WOODEN_BARRICADES, TRAIT_WATER_BREATHING, TRAIT_NO_THROWING), INNATE_TRAIT) // gary REALLY balls (also gary making a hideout in a pool is funny) + add_traits(list(TRAIT_SHOCKIMMUNE, TRAIT_GOES_THROUGH_WOODEN_BARRICADES, TRAIT_WATER_BREATHING), INNATE_TRAIT) // gary REALLY balls (also gary making a hideout in a pool is funny) set_home(home) // remove unused chicken components for gary qdel(GetComponent(/datum/component/aging))