Adds /turf/template_noop and /area/template_noop to dmm reader

This commit is contained in:
AnturK
2016-02-22 19:04:06 +01:00
parent 07432da284
commit 4e0db5664b
2 changed files with 21 additions and 12 deletions
@@ -2,13 +2,14 @@
set category = "Debug"
set name = "Map template - Place"
var/datum/map_template/template
var/turf/T = get_turf(mob)
if(!T)
return
var/map = input(usr, "Choose a Map Template to place at your CURRENT LOCATION","Place Map Template") as null|anything in map_templates
if(!map)
return
template = map_templates[map]
var/list/preview = list()