Well it compiles

This commit is contained in:
Fermi
2019-11-21 02:15:58 +00:00
parent 2a8d72c909
commit cc53a0061f
10 changed files with 402 additions and 202 deletions
@@ -365,3 +365,15 @@
tail.Insert(src)
if(only_one)
return TRUE
/obj/item/organ/random
name = "Illegal organ"
desc = "Something fucked up"
/obj/item/organ/random/Initialize()
..()
var/list = subtypesof(/obj/item/organ)
list -= /obj/item/organ/random
var/newtype = pick(list)
new newtype(loc)
return INITIALIZE_HINT_QDEL