diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index 81dd2758887..32326a069f1 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -6,7 +6,7 @@ item_state = "helmet" armor = list(melee = 50, bullet = 15, laser = 50,energy = 10, bomb = 25, bio = 0, rad = 0) body_parts_covered = HEAD | EYES | EARS - flags_inv = HIDEEARS | HIDEEYES | HIDEHAIR + flags_inv = HIDEEARS | HIDEEYES | HIDEHEADHAIR cold_protection = HEAD min_cold_protection_temperature = HELMET_MIN_COLD_PROTECTION_TEMPERATURE heat_protection = HEAD @@ -26,7 +26,7 @@ item_state = "helmet" flags = FPRINT armor = list(melee = 82, bullet = 15, laser = 5,energy = 5, bomb = 5, bio = 2, rad = 0) - flags_inv = HIDEEARS|HIDEHAIR + flags_inv = HIDEEARS | HIDEHEADHAIR siemens_coefficient = 0.7 eyeprot = 1 @@ -37,7 +37,7 @@ flags = FPRINT item_state = "swat" armor = list(melee = 80, bullet = 60, laser = 50,energy = 25, bomb = 50, bio = 10, rad = 0) - flags_inv = HIDEEARS|HIDEEYES|HIDEHAIR + flags_inv = HIDEEARS|HIDEEYES|HIDEHEADHAIR cold_protection = HEAD species_fit = list("Vox") min_cold_protection_temperature = SPACE_HELMET_MIN_COLD_PROTECTION_TEMPERATURE @@ -49,6 +49,7 @@ desc = "'Let the battle commence!'" icon_state = "thunderdome" flags = FPRINT + flags_inv = HIDEEARS | HIDEHEADHAIR item_state = "thunderdome" armor = list(melee = 80, bullet = 60, laser = 50,energy = 10, bomb = 25, bio = 10, rad = 0) cold_protection = HEAD diff --git a/code/modules/clothing/spacesuits/syndi.dm b/code/modules/clothing/spacesuits/syndi.dm index 5bd51d11b00..8983a85db13 100644 --- a/code/modules/clothing/spacesuits/syndi.dm +++ b/code/modules/clothing/spacesuits/syndi.dm @@ -7,6 +7,7 @@ desc = "Has a tag on it: Totally not property of a hostile corporation, honest!" armor = list(melee = 60, bullet = 50, laser = 30,energy = 15, bomb = 30, bio = 30, rad = 30) siemens_coefficient = 0.8 + flags_inv = HIDEEARS | HIDEHAIR /obj/item/clothing/suit/space/syndicate name = "red space suit" diff --git a/code/modules/clothing/suits/bio.dm b/code/modules/clothing/suits/bio.dm index 0c60909a3e4..9f08c61861e 100644 --- a/code/modules/clothing/suits/bio.dm +++ b/code/modules/clothing/suits/bio.dm @@ -84,6 +84,7 @@ /obj/item/clothing/head/bio_hood/beekeeping name = "beekeeping hood" icon_state = "bio_beekeeping" + flags_inv = null armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 30, rad = 0) diff --git a/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm b/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm index 6539f3d1838..36b5ce37e05 100644 --- a/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm +++ b/code/modules/research/xenoarchaeology/tools/anomaly_suit.dm @@ -12,6 +12,7 @@ desc = "A sealed bio hood capable of insulating against exotic alien energies." icon_state = "engspace_helmet" item_state = "engspace_helmet" + flags_inv = HIDEEARS | HIDEHEADHAIR armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100) /obj/item/clothing/suit/space/anomaly @@ -27,4 +28,5 @@ desc = "A pressure resistant excavation hood partially capable of insulating against exotic alien energies." icon_state = "cespace_helmet" item_state = "cespace_helmet" + flags_inv = HIDEEARS | HIDEHEADHAIR armor = list(melee = 0, bullet = 0, laser = 0,energy = 0, bomb = 0, bio = 100, rad = 100) diff --git a/html/changelogs/DeityLink_128.yml b/html/changelogs/DeityLink_128.yml new file mode 100644 index 00000000000..d1f83bfff66 --- /dev/null +++ b/html/changelogs/DeityLink_128.yml @@ -0,0 +1,4 @@ +author: Deity Link +delete-after: true +changes: + - tweak: Fixed a few helmets/hoods that were hiding your glasses/beard when they shouldn't. diff --git a/icons/pda_icons/pda_minimap_taxi.png b/icons/pda_icons/pda_minimap_taxi.png index 9d4a90d69d4..d6d4c68596e 100644 Binary files a/icons/pda_icons/pda_minimap_taxi.png and b/icons/pda_icons/pda_minimap_taxi.png differ