From f8f4a0d5e072327b7867331c0f4ea0975df910e7 Mon Sep 17 00:00:00 2001 From: Mathilde <146444134+ibexgoetia@users.noreply.github.com> Date: Mon, 26 Jan 2026 23:15:10 +0100 Subject: [PATCH] Blueshield access to Command Budget (#5171) ## About The Pull Request ...they never had access? Huh. Well, this little balance patch does give blueshields access to the Command Budget, allowing them to buy non-goodie items using Command's coffers, instead of their own. ## Why It's Good For The Game The imports tab is about to go with https://github.com/Bubberstation/Bubberstation/pull/4242, and I suspect that Blueshields were balanced with the imports tab in mind. A blueshield can buy all the equipment they need from it (namely, heavy duty medical kits and other unique healing items such as injectors, synth meds). The tab allows a blueshield to use command's budget, but the regular cargo tab... does not. The command budget always remains unused; most of the time it's only the blueshields themselves that use it. As there is no request console (and it doesn't make sense for there to be one), I just gave them proper access to the command budget. The funds can't be used to buy guns or other 'goodie' items. ## Proof Of Testing image ## Changelog :cl: balance: Blueshields now have proper access to the Command Budget. /:cl: --- modular_skyrat/master_files/code/datums/id_trim/jobs.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modular_skyrat/master_files/code/datums/id_trim/jobs.dm b/modular_skyrat/master_files/code/datums/id_trim/jobs.dm index 6e8e1d6cfb7..1622ecc7e7c 100644 --- a/modular_skyrat/master_files/code/datums/id_trim/jobs.dm +++ b/modular_skyrat/master_files/code/datums/id_trim/jobs.dm @@ -57,7 +57,7 @@ minimal_access = list( ACCESS_CAPTAIN, ACCESS_BRIG_ENTRANCE, ACCESS_COMMAND, ACCESS_CONSTRUCTION, ACCESS_DETECTIVE, ACCESS_ENGINEERING, ACCESS_GATEWAY, ACCESS_MAINT_TUNNELS, ACCESS_MEDICAL, ACCESS_RC_ANNOUNCE, ACCESS_SCIENCE, ACCESS_WEAPONS, - ACCESS_BRIG, ACCESS_CARGO, ACCESS_COURT, ACCESS_SECURITY, ACCESS_HOP, ACCESS_TELEPORTER, ACCESS_EVA + ACCESS_BRIG, ACCESS_CARGO, ACCESS_COURT, ACCESS_SECURITY, ACCESS_HOP, ACCESS_TELEPORTER, ACCESS_EVA, ACCESS_BUDGET ) minimal_wildcard_access = list() template_access = list(ACCESS_CAPTAIN)