Fixed an incorrect flag. Spawning was looking for DEBUG rights rather than SPAWN rights.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5096 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
elly1989@rocketmail.com
2012-11-17 07:02:38 +00:00
parent 5d9f6d4ccd
commit 175b64cb9a

View File

@@ -794,7 +794,7 @@ var/global/floorIsLava = 0
set desc = "(atom path) Spawn an atom"
set name = "Spawn"
if(!check_rights(R_DEBUG)) return
if(!check_rights(R_SPAWN)) return
var/list/types = typesof(/atom)
var/list/matches = new()