From 1e61e5a8eb24cb1a6eb46cd6df8dde6147014ef1 Mon Sep 17 00:00:00 2001 From: feartheblackout <59633984+feartheblackout@users.noreply.github.com> Date: Mon, 6 May 2024 06:54:32 -0500 Subject: [PATCH] Tech Support bug fixes; gives Tech Support a debugger instead of a laptop (#19083) title Given that Tech Support can vend infinite free laptops, I figured a tool like the debugger would be more useful for them than another computer. --- code/game/jobs/faction/idris.dm | 6 +- code/game/jobs/faction/orion_express.dm | 6 +- code/game/jobs/job/civilian.dm | 6 +- .../SimpleMaroon-techsupportdoessomething.yml | 60 +++++++++++++++++++ 4 files changed, 69 insertions(+), 9 deletions(-) create mode 100644 html/changelogs/SimpleMaroon-techsupportdoessomething.yml diff --git a/code/game/jobs/faction/idris.dm b/code/game/jobs/faction/idris.dm index 7ef92a7e097..cba0ebe956a 100644 --- a/code/game/jobs/faction/idris.dm +++ b/code/game/jobs/faction/idris.dm @@ -196,11 +196,11 @@ name = "Tech Support - Idris" jobtype = /datum/job/librarian - l_pocket = /obj/item/modular_computer/handheld/preset + l_pocket = /obj/item/modular_computer/handheld/preset/generic r_pocket = /obj/item/card/tech_support r_hand = /obj/item/storage/bag/circuits/basic - l_hand = /obj/item/modular_computer/laptop/preset - gloves = /obj/item/modular_computer/handheld/wristbound/preset/advanced/civilian + l_hand = /obj/item/device/debugger + wrist = /obj/item/modular_computer/handheld/wristbound/preset/advanced/civilian /obj/outfit/job/chaplain/idris name = "Chaplain - Idris" diff --git a/code/game/jobs/faction/orion_express.dm b/code/game/jobs/faction/orion_express.dm index e7f320bd30a..4570102aafd 100644 --- a/code/game/jobs/faction/orion_express.dm +++ b/code/game/jobs/faction/orion_express.dm @@ -173,11 +173,11 @@ name = "Tech Support - Orion Express" jobtype = /datum/job/librarian - l_pocket = /obj/item/modular_computer/handheld/preset + l_pocket = /obj/item/modular_computer/handheld/preset/generic r_pocket = /obj/item/card/tech_support r_hand = /obj/item/storage/bag/circuits/basic - l_hand = /obj/item/modular_computer/laptop/preset - gloves = /obj/item/modular_computer/handheld/wristbound/preset/advanced/civilian + l_hand = /obj/item/device/debugger + wrist = /obj/item/modular_computer/handheld/wristbound/preset/advanced/civilian /obj/outfit/job/journalist/orion name = "Corporate Reporter - Orion Express" diff --git a/code/game/jobs/job/civilian.dm b/code/game/jobs/job/civilian.dm index 45170b64d16..68558d58159 100644 --- a/code/game/jobs/job/civilian.dm +++ b/code/game/jobs/job/civilian.dm @@ -246,11 +246,11 @@ jobtype = /datum/job/librarian uniform = /obj/item/clothing/under/suit_jacket/charcoal - l_pocket = /obj/item/modular_computer/handheld/preset + l_pocket = /obj/item/modular_computer/handheld/preset/generic r_pocket = /obj/item/card/tech_support r_hand = /obj/item/storage/bag/circuits/basic - l_hand = /obj/item/modular_computer/laptop/preset - gloves = /obj/item/modular_computer/handheld/wristbound/preset/advanced/civilian + l_hand = /obj/item/device/debugger + wrist = /obj/item/modular_computer/handheld/wristbound/preset/advanced/civilian /obj/outfit/job/librarian/tech_support/equip(mob/living/carbon/human/H, visualsOnly = FALSE) if(visualsOnly) diff --git a/html/changelogs/SimpleMaroon-techsupportdoessomething.yml b/html/changelogs/SimpleMaroon-techsupportdoessomething.yml new file mode 100644 index 00000000000..fa81cac1526 --- /dev/null +++ b/html/changelogs/SimpleMaroon-techsupportdoessomething.yml @@ -0,0 +1,60 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# - (fixes bugs) +# wip +# - (work in progress) +# qol +# - (quality of life) +# soundadd +# - (adds a sound) +# sounddel +# - (removes a sound) +# rscadd +# - (adds a feature) +# rscdel +# - (removes a feature) +# imageadd +# - (adds an image or sprite) +# imagedel +# - (removes an image or sprite) +# spellcheck +# - (fixes spelling or grammar) +# experiment +# - (experimental change) +# balance +# - (balance changes) +# code_imp +# - (misc internal code change) +# refactor +# - (refactors code) +# config +# - (makes a change to the config files) +# admin +# - (makes changes to administrator tools) +# server +# - (miscellaneous changes to server) +################################# + +# Your name. +author: SimpleMaroon + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, this gets changed to [] after reading. Just remove the brackets when you add new shit. +# Please surround your changes in double quotes ("). It works without them, but if you use certain characters it screws up compiling. The quotes will not show up in the changelog. +changes: + - qol: "The Tech Support job now spawns with a debugger instead of a laptop." + - bugfix: "The Tech Support job's tablet computer can now be enrolled properly." + - bugfix: "The Tech Support job's wristbound computer now spawns on their wrist properly."