diff --git a/code/modules/mob/living/carbon/human/species/slime.dm b/code/modules/mob/living/carbon/human/species/slime.dm index 5811719c603..42a566e450c 100644 --- a/code/modules/mob/living/carbon/human/species/slime.dm +++ b/code/modules/mob/living/carbon/human/species/slime.dm @@ -40,8 +40,8 @@ has_organ = list( "brain" = /obj/item/organ/internal/brain/slime, - "osmatic pressure regulator" = /obj/item/organ/internal/heart/slime, - "gas exchange membrane" = /obj/item/organ/internal/lungs/slime + "heart" = /obj/item/organ/internal/heart/slime, + "lungs" = /obj/item/organ/internal/lungs/slime ) mutantears = null has_limbs = list( diff --git a/code/modules/surgery/organs/subtypes/slime.dm b/code/modules/surgery/organs/subtypes/slime.dm index 04d551330bc..14c89aded63 100644 --- a/code/modules/surgery/organs/subtypes/slime.dm +++ b/code/modules/surgery/organs/subtypes/slime.dm @@ -1,8 +1,8 @@ /obj/item/organ/internal/heart/slime icon = 'icons/obj/species_organs/slime.dmi' - name = "osmotic pressure regulator" + name = "slime heart" icon_state = "heart" - desc = "It appears to be some kind of biological pump that uses osmotic pressure to regulate water flow. It seems to work similar to a heart." + desc = "This is a slime's osmotic pressure regulator, it appears to be some kind of biological pump that uses osmotic pressure to regulate water flow. It seems to work similar to a heart." dead_icon = null /obj/item/organ/internal/heart/slime/update_icon() @@ -10,6 +10,6 @@ /obj/item/organ/internal/lungs/slime icon = 'icons/obj/species_organs/slime.dmi' - name = "gas exchange membrane" + name = "slime lungs" icon_state = "lungs" - desc = "Membrane used for oxygen intake and gas exchange. These seem to work similar to lungs." \ No newline at end of file + desc = "This is a slime's gas exchange membrane, this membrane used for oxygen intake and gas exchange. These seem to work similar to lungs." \ No newline at end of file