mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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:
@@ -794,7 +794,7 @@ var/global/floorIsLava = 0
|
|||||||
set desc = "(atom path) Spawn an atom"
|
set desc = "(atom path) Spawn an atom"
|
||||||
set name = "Spawn"
|
set name = "Spawn"
|
||||||
|
|
||||||
if(!check_rights(R_DEBUG)) return
|
if(!check_rights(R_SPAWN)) return
|
||||||
|
|
||||||
var/list/types = typesof(/atom)
|
var/list/types = typesof(/atom)
|
||||||
var/list/matches = new()
|
var/list/matches = new()
|
||||||
|
|||||||
Reference in New Issue
Block a user