Skip to content

Commit

Permalink
Fixes anesthesia locker access, adds shock blankets to generic medica…
Browse files Browse the repository at this point in the history
…l lockers
  • Loading branch information
MrMelbert committed Oct 27, 2023
1 parent 886df1d commit 3fd13a8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions maplestation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -5416,6 +5416,7 @@
#include "maplestation_modules\code\game\objects\structures\crate_lockers\crates.dm"
#include "maplestation_modules\code\game\objects\structures\crate_lockers\closets\secure\asset_protection.dm"
#include "maplestation_modules\code\game\objects\structures\crate_lockers\closets\secure\bridge_officer.dm"
#include "maplestation_modules\code\game\objects\structures\crate_lockers\closets\secure\medical.dm"
#include "maplestation_modules\code\game\objects\structures\crate_lockers\closets\secure\quartermaster.dm"
#include "maplestation_modules\code\modules\admin\admin_vv.dm"
#include "maplestation_modules\code\modules\admin\smites\pain_smite.dm"
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
// Adds shock blankets to general med lockers
/obj/structure/closet/secure_closet/medical1/PopulateContents()
. = ..()
new /obj/item/shock_blanket(src)

// Adds robotics access to anesthesiology lockers
/obj/structure/closet/secure_closet/medical2
req_access = null
req_one_access = list(ACCESS_SURGERY, ACCESS_ROBOTICS)

0 comments on commit 3fd13a8

Please sign in to comment.