From 175b64cb9aead51a0336acead2bd751f4df94a7e Mon Sep 17 00:00:00 2001 From: "elly1989@rocketmail.com" Date: Sat, 17 Nov 2012 07:02:38 +0000 Subject: [PATCH] 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 --- code/modules/admin/admin.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 3877145895..500ccc4d04 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -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()