From 9d859a000069bf3ce1fbb31334fe59b8cbeb4e11 Mon Sep 17 00:00:00 2001 From: Casper3667 <8396443+Casper3667@users.noreply.github.com> Date: Sun, 16 Aug 2026 16:12:56 +0000 Subject: [PATCH] Removes the access restriction on fuel tanks from ops (#23047) Now with fuel tanks being persistent and https://github.com/Aurorastation/Aurora.3/pull/23027 making the welding packs start empty, machinists need a way to get welding fuel. As the fuel tanks from ops are locked to engineering, it is creating a barrier for them to get it. Hence the removal of the access restriction. --- code/modules/cargo/items/engineering.dm | 2 +- html/changelogs/FuelTankAccess.yml | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/FuelTankAccess.yml diff --git a/code/modules/cargo/items/engineering.dm b/code/modules/cargo/items/engineering.dm index 85828d071ff..3e44b1552d0 100644 --- a/code/modules/cargo/items/engineering.dm +++ b/code/modules/cargo/items/engineering.dm @@ -425,7 +425,7 @@ items = list( /obj/structure/reagent_dispensers/fueltank ) - access = ACCESS_ENGINE + access = 0 container_type = "box" groupable = TRUE spawn_amount = 1 diff --git a/html/changelogs/FuelTankAccess.yml b/html/changelogs/FuelTankAccess.yml new file mode 100644 index 00000000000..ad4754fa7c5 --- /dev/null +++ b/html/changelogs/FuelTankAccess.yml @@ -0,0 +1,6 @@ +author: TheGreyWolf + +delete-after: True + +changes: + - rscadd: "The fuel tank from the cargo ordering program is no longer access restricted."