mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 11:13:16 +00:00
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:
File diff suppressed because it is too large
Load Diff
@@ -1,9 +1,8 @@
|
|||||||
/*
|
/*
|
||||||
|
|
||||||
Hey you!
|
Hey you!
|
||||||
You only need to untick code/game/area/Space Station 13 areas.dm and maps/tgstation.2.0.9.dmm for this
|
You only need to untick maps/tgstation.2.0.9.dmm for this if you download the modified map from:
|
||||||
if you download them modified map from http://tgstation13.googlecode.com/files/tgstation.2.0.9_departmentsec.zip
|
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,
|
Everything else can just be ticked on top of the original stuff.
|
||||||
which should only be ticked if you're using the map above.
|
|
||||||
*/
|
*/
|
||||||
@@ -9,20 +9,20 @@ proc/assign_sec_to_department(var/mob/living/carbon/human/H)
|
|||||||
switch(department)
|
switch(department)
|
||||||
if("supply")
|
if("supply")
|
||||||
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/supply(H), slot_ears)
|
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)
|
access = list(access_mailsorting, access_mining)
|
||||||
destination = /area/quartermaster/storage
|
destination = /area/security/checkpoint/supply
|
||||||
if("engineering")
|
if("engineering")
|
||||||
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/engi(H), slot_ears)
|
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)
|
access = list(access_construction, access_engine)
|
||||||
destination = /area/engine/break_room
|
destination = /area/security/checkpoint/engineering
|
||||||
if("medical")
|
if("medical")
|
||||||
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/med(H), slot_ears)
|
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/med(H), slot_ears)
|
||||||
access = list(access_medical)
|
access = list(access_medical)
|
||||||
destination = /area/medical/medbay
|
destination = /area/security/checkpoint/medical
|
||||||
if("science")
|
if("science")
|
||||||
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/sci(H), slot_ears)
|
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec/department/sci(H), slot_ears)
|
||||||
access = list(access_research)
|
access = list(access_research)
|
||||||
destination = /area/medical/research
|
destination = /area/security/checkpoint/science
|
||||||
else
|
else
|
||||||
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec(H), slot_ears)
|
H.equip_to_slot_or_del(new /obj/item/device/radio/headset/headset_sec(H), slot_ears)
|
||||||
|
|
||||||
|
|||||||
18007
maps/tgstation.2.1.0.dmm
18007
maps/tgstation.2.1.0.dmm
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user