Skip to content

Commit

Permalink
Name bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben10083 committed Jun 11, 2024
1 parent 98a2295 commit 1f5e1ef
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions code/modules/mob/living/simple_animal/friendly/schlorrgo.dm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,8 @@
switch(current_size)

if(EGG_SCHLORRGO)
name = "schlorrgo hatchling"
if(!named)
name = "schlorrgo hatchling"
desc = "A fat creature native to the world of Hro'zamal. This one just hatched from an egg."
current_size = BABY_SCHLORRGO
max_nutrition = 100
Expand All @@ -119,7 +120,8 @@
holder_type = /obj/item/holder/schlorrgo/baby

if(BABY_SCHLORRGO)
name = "schlorrgo"
if(!named)
name = "schlorrgo"
desc = "A fat creature native to the world of Hro'zamal."
current_size = NORMAL_SCHLORRGO
max_nutrition = 200
Expand All @@ -135,7 +137,8 @@
holder_type = /obj/item/holder/schlorrgo

if(NORMAL_SCHLORRGO)
name = "fat schlorrgo"
if(!named)
name = "fat schlorrgo"
desc = "A fat creature native to the world of Hro'zamal. This one is fatter than most schlorrgo."
current_size = FAT_SCHLORRGO
max_nutrition = 400
Expand All @@ -151,7 +154,8 @@
holder_type = /obj/item/holder/schlorrgo/fat

if(FAT_SCHLORRGO)
name = "massive schlorrgo"
if(!named)
name = "massive schlorrgo"
desc = "A fat creature native to the world of Hro'zamal. This one is so big it can barely walk."
current_size = WIDE_SCHLORRGO
max_nutrition = 1000
Expand All @@ -176,7 +180,8 @@
holder_type = null

if(WIDE_SCHLORRGO)
name = "colossal schlorrgo"
if(!named)
name = "colossal schlorrgo"
desc = "A fat creature native to the world of Hro'zamal. This one has been immobilized by its massive weight."
current_size = COLOSSAL_SCHLORRGO
max_nutrition = 1500
Expand Down

0 comments on commit 1f5e1ef

Please sign in to comment.