mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-09 22:25:46 +01:00
Merge pull request #10991 from Dave-TH/medbay_qol
Smartfridges Accept IV Bags
This commit is contained in:
@@ -80,9 +80,11 @@
|
||||
icon_on = "smartfridge_chem"
|
||||
|
||||
/obj/machinery/smartfridge/medbay/accept_check(obj/item/O)
|
||||
if(istype(O,/obj/item/reagent_containers/glass/))
|
||||
if(istype(O,/obj/item/reagent_containers/glass))
|
||||
return 1
|
||||
if(istype(O,/obj/item/storage/pill_bottle/))
|
||||
if(istype(O,/obj/item/reagent_containers/iv_bag))
|
||||
return 1
|
||||
if(istype(O,/obj/item/storage/pill_bottle))
|
||||
return 1
|
||||
if(ispill(O))
|
||||
return 1
|
||||
@@ -106,9 +108,11 @@
|
||||
req_one_access_txt = "5;33"
|
||||
|
||||
/obj/machinery/smartfridge/secure/medbay/accept_check(obj/item/O)
|
||||
if(istype(O,/obj/item/reagent_containers/glass/))
|
||||
if(istype(O,/obj/item/reagent_containers/glass))
|
||||
return 1
|
||||
if(istype(O,/obj/item/storage/pill_bottle/))
|
||||
if(istype(O,/obj/item/reagent_containers/iv_bag))
|
||||
return 1
|
||||
if(istype(O,/obj/item/storage/pill_bottle))
|
||||
return 1
|
||||
if(ispill(O))
|
||||
return 1
|
||||
|
||||
Reference in New Issue
Block a user