Rewrite examine() to pass a list around

This commit is contained in:
Aronai Sieyes
2020-04-29 16:42:16 -04:00
committed by VirgoBot
parent 8c5c0a7cfb
commit 6ebd249748
214 changed files with 2021 additions and 1120 deletions

View File

@@ -64,11 +64,11 @@ GLOBAL_LIST_EMPTY(all_blobs)
return FALSE
/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)