Updated Department Security files to work with the new 2.1.0 map.

Updated the relevant readme file
Updated 2.1.0 with some missing air alarms and fire alarms.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@5362 316c924e-a436-60f5-8080-3fe189b3f50e
This commit is contained in:
ericgfwong@hotmail.com
2012-12-20 00:28:13 +00:00
parent 17b162d3ba
commit 3a928012f1
4 changed files with 9013 additions and 10749 deletions

View File

@@ -1,9 +1,8 @@
/*
Hey you!
You only need to untick code/game/area/Space Station 13 areas.dm and maps/tgstation.2.0.9.dmm for this
if you download them modified map from http://tgstation13.googlecode.com/files/tgstation.2.0.9_departmentsec.zip
You only need to untick maps/tgstation.2.0.9.dmm for this if you download the modified map from:
http://tgstation13.googlecode.com/files/tgstation.2.1.0_deptsec.zip
Everything else can just be ticked on top of the original stuff, except the Space Station 13 areas.dm,
which should only be ticked if you're using the map above.
Everything else can just be ticked on top of the original stuff.
*/

View File

@@ -9,20 +9,20 @@ proc/assign_sec_to_department(var/mob/living/carbon/human/H)
switch(department)
if("supply")
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/supply(H), slot_ears)
access = list(access_cargo, access_mining)
destination = /area/quartermaster/storage
access = list(access_mailsorting, access_mining)
destination = /area/security/checkpoint/supply
if("engineering")
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/engi(H), slot_ears)
access = list(access_construction, access_engine)
destination = /area/engine/break_room
destination = /area/security/checkpoint/engineering
if("medical")
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/med(H), slot_ears)
access = list(access_medical)
destination = /area/medical/medbay
destination = /area/security/checkpoint/medical
if("science")
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/sci(H), slot_ears)
access = list(access_research)
destination = /area/medical/research
destination = /area/security/checkpoint/science
else
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec(H), slot_ears)