mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
TG: -Fixed broken piping in DJ station
-Added a shower unit to virology's clean airlock -Removed access requirement for Toxins Test Chamber, as it was before -Courtroom witness box made easier to use -QM now has full access to the departments he commands (mining) -Beakers, small and large can now be made/recycled in autolathes. Large beakers are significantly more expensive Revision: r3592 Author: ericgfw...@hotmail.com
This commit is contained in:
@@ -231,7 +231,7 @@
|
|||||||
if("Shaft Miner")
|
if("Shaft Miner")
|
||||||
return list(access_mining, access_mint, access_mining_station)
|
return list(access_mining, access_mint, access_mining_station)
|
||||||
if("Quartermaster")
|
if("Quartermaster")
|
||||||
return list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mint, access_mining)
|
return list(access_maint_tunnels, access_mailsorting, access_cargo, access_cargo_bot, access_qm, access_mint, access_mining, access_mining_station)
|
||||||
if("Chief Engineer")
|
if("Chief Engineer")
|
||||||
return list(access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels,
|
return list(access_engine, access_engine_equip, access_tech_storage, access_maint_tunnels,
|
||||||
access_teleporter, access_external_airlocks, access_atmospherics, access_emergency_storage, access_eva,
|
access_teleporter, access_external_airlocks, access_atmospherics, access_emergency_storage, access_eva,
|
||||||
|
|||||||
@@ -23,6 +23,8 @@ var/global/list/autolathe_recipes = list( \
|
|||||||
new /obj/item/weapon/kitchenknife(), \
|
new /obj/item/weapon/kitchenknife(), \
|
||||||
new /obj/item/weapon/scalpel(), \
|
new /obj/item/weapon/scalpel(), \
|
||||||
new /obj/item/weapon/circular_saw(), \
|
new /obj/item/weapon/circular_saw(), \
|
||||||
|
new /obj/item/weapon/reagent_containers/glass/beaker(), \
|
||||||
|
new /obj/item/weapon/reagent_containers/glass/large(), \
|
||||||
new /obj/item/ammo_casing/shotgun/blank(), \
|
new /obj/item/ammo_casing/shotgun/blank(), \
|
||||||
new /obj/item/ammo_casing/shotgun/beanbag(), \
|
new /obj/item/ammo_casing/shotgun/beanbag(), \
|
||||||
new /obj/item/ammo_magazine/c38(), \
|
new /obj/item/ammo_magazine/c38(), \
|
||||||
|
|||||||
@@ -1936,6 +1936,8 @@
|
|||||||
icon = 'chemical.dmi'
|
icon = 'chemical.dmi'
|
||||||
icon_state = "beaker0"
|
icon_state = "beaker0"
|
||||||
item_state = "beaker"
|
item_state = "beaker"
|
||||||
|
m_amt = 0
|
||||||
|
g_amt = 500
|
||||||
|
|
||||||
pickup(mob/user)
|
pickup(mob/user)
|
||||||
on_reagent_change(user)
|
on_reagent_change(user)
|
||||||
@@ -2015,6 +2017,8 @@
|
|||||||
icon = 'chemical.dmi'
|
icon = 'chemical.dmi'
|
||||||
icon_state = "beakerlarge"
|
icon_state = "beakerlarge"
|
||||||
item_state = "beaker"
|
item_state = "beaker"
|
||||||
|
m_amt = 0
|
||||||
|
g_amt = 15000
|
||||||
volume = 100
|
volume = 100
|
||||||
amount_per_transfer_from_this = 10
|
amount_per_transfer_from_this = 10
|
||||||
possible_transfer_amounts = list(5,10,15,25,30,50,100)
|
possible_transfer_amounts = list(5,10,15,25,30,50,100)
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 14 KiB |
Reference in New Issue
Block a user