MOVING TO MAP 2.0.1

I believe we have ironed out all the identified bugs and we're ready to move the map into live. It took two days of work, but we've done it. If anyone else has any more mapping changes or updates to make, please do them

ACCESS:
- Scientists granted medbay access (temporarely, so they can get out) - I REPEAT: TEMPORARELY!!!

MAPPERS NOTE:
- If you wish to add more than one access requirement for doors or machinery, edit the req_access_txt like so: "5;6" if it requires accesses 5 AND 6. There is no way to make it allow 5 OR 6 tho.

That's all folks.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@995 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
baloh.matevz
2011-02-08 21:58:50 +00:00
parent d430cf324f
commit 5dca5fc6b9
6 changed files with 430 additions and 432 deletions
+3 -3
View File
@@ -1,6 +1,6 @@
/*
HOW IT WORKS
The radio_controller is a global object maintaining all radio transmissions, think about it as about "ether".
Note that /obj/item/device/radio handles transmission using nonstandard way.
procs:
@@ -182,7 +182,7 @@ datum/radio_frequency
// N++
// log_admin("DEBUG: post_signal(source=[source] ([source.x], [source.y]),filter=[filter]) frequency=[frequency], N=[N],Nt=[Nt]")
del(signal)
@@ -198,7 +198,7 @@ datum/radio_frequency
// var/l = devices_line___.len
//log_admin("DEBUG: devices_line.len=[devices_line.len]")
//log_admin("DEBUG: devices(filter_str).len=[l]")
remove_listener(obj/device)
for (var/devices_filter in devices)
devices[devices_filter]-=device
+4 -6
View File
@@ -50,15 +50,13 @@
/obj/var/list/req_access = null
/obj/var/req_access_txt = "0"
/obj/New()
//NOTE: If a room requires more than one access (IE: Morgue + medbay) set the req_acesss_txt to "5;6" if it requires 5 and 6
if(src.req_access_txt)
var/req_access_str = params2list(req_access_txt)
var/req_access_changed = 0
var/list/req_access_str = dd_text2list(req_access_txt,";")
req_access = list()
for(var/x in req_access_str)
var/n = text2num(x)
if(n)
if(!req_access_changed)
req_access = list()
req_access += n
..()
@@ -130,7 +128,7 @@
if("Warden")
return list(access_security, access_brig, access_armory, access_court)
if("Scientist")
return list(access_tox, access_tox_storage, access_research)
return list(access_tox, access_tox_storage, access_research, access_medical)
if("Head of Security")
return list(access_medical, access_morgue, access_tox, access_tox_storage, access_chemistry, access_medlab, access_court,
access_teleporter, access_heads, access_tech_storage, access_security, access_brig, access_atmospherics,
+1 -1
View File
@@ -28,7 +28,7 @@
/obj/machinery/blob_act()
if(prob(50))
del(src)
/obj/machinery/Topic(href, href_list)
..()