This commit is contained in:
lolman360
2020-10-06 10:09:12 +11:00
parent 61a37abda9
commit 3dfab3b3c4
93 changed files with 462 additions and 519 deletions

View File

@@ -61,11 +61,11 @@ var/list/blobs = list()
return TRUE
/obj/structure/blob/examine(mob/user)
..()
. = ..()
if(!overmind)
to_chat(user, "It seems inert.") // Dead blob.
. += "It seems inert." // Dead blob.
else
to_chat(user, overmind.blob_type.desc)
. += overmind.blob_type.desc
/obj/structure/blob/get_description_info()
if(overmind)