Removed TRAIT_LIFESPAN.

This commit is contained in:
Zuhayr
2015-01-31 12:47:54 +10:30
parent 8790bfd014
commit 43802dceb7
8 changed files with 63 additions and 103 deletions

View File

@@ -1007,6 +1007,18 @@ var/global/floorIsLava = 0
var/datum/seed/S = seed_types[seedtype]
S.harvest(usr,0,0,1)
/datum/admins/proc/spawn_plant()
set category = "Debug"
set desc = "Spawn a spreading plant effect."
set name = "Spawn Plant"
if(!check_rights(R_SPAWN)) return
var/seedtype = input("Select a seed type", "Spawn Plant") as null|anything in seed_types
if(!seedtype || !seed_types[seedtype])
return
new /obj/effect/plant(get_turf(usr), seed_types[seedtype])
/datum/admins/proc/spawn_atom(var/object as text)
set category = "Debug"
set desc = "(atom path) Spawn an atom"