From 02d4ae2138065b8f762868ac0b6f75ba06906350 Mon Sep 17 00:00:00 2001 From: Archie <53913550+ArchieBeepBoop@users.noreply.github.com> Date: Wed, 20 Apr 2022 01:44:44 -0300 Subject: [PATCH] Pellucyte Fixes --- hyperstation/code/mobs/crystal.dm | 4 +++- hyperstation/code/modules/clothing/sizeaccessories.dm | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/hyperstation/code/mobs/crystal.dm b/hyperstation/code/mobs/crystal.dm index a949237a0..1a375672d 100644 --- a/hyperstation/code/mobs/crystal.dm +++ b/hyperstation/code/mobs/crystal.dm @@ -7,7 +7,8 @@ icon_state = "crystal" icon_living = "crystal" icon_dead = "crystal" - mob_biotypes = MOB_BEAST + gender = NEUTER + mob_biotypes = MOB_INORGANIC speak_chance = 0 turns_per_move = 10 response_help = "touches" @@ -29,6 +30,7 @@ atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) minbodytemp = 0 maxbodytemp = 3500 + blood_volume = 0 //It's a fucking rock faction = list("carp") movement_type = FLYING pressure_resistance = 500 diff --git a/hyperstation/code/modules/clothing/sizeaccessories.dm b/hyperstation/code/modules/clothing/sizeaccessories.dm index df67d29bb..e891672c2 100644 --- a/hyperstation/code/modules/clothing/sizeaccessories.dm +++ b/hyperstation/code/modules/clothing/sizeaccessories.dm @@ -30,7 +30,7 @@ //For storing normalization on mobs /mob/living var/normalized = FALSE - //normalized is a check for instances where more than one accessory of jewelry is worn. For all intensive purposes, only the first worn accessory stores the user's size. \ + //normalized is a check for instances where more than one accessory of jewelry is worn. For all intensive purposes, only the first worn accessory stores the user's size. //Anything else is just extra. //Clothing below. Code could be compressed more, but until I make jewelry slots, this will do. -Dahl