From 2f53644eb07c381b6fda793876ec1ce9da325c88 Mon Sep 17 00:00:00 2001 From: Matt Atlas Date: Tue, 2 Mar 2021 09:56:54 +0100 Subject: [PATCH] fixes security/engineering occupation being broken (#11353) --- .../abstract/new_player/preferences_setup.dm | 2 +- html/changelogs/mattatlas-ihatebugs.yml | 41 +++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/mattatlas-ihatebugs.yml diff --git a/code/modules/mob/abstract/new_player/preferences_setup.dm b/code/modules/mob/abstract/new_player/preferences_setup.dm index bc70748664c..3b2d9fccf85 100644 --- a/code/modules/mob/abstract/new_player/preferences_setup.dm +++ b/code/modules/mob/abstract/new_player/preferences_setup.dm @@ -233,7 +233,7 @@ else if(job_medsci_high) chosenJob = SSjobs.bitflag_to_job["[MEDSCI]"]["[job_medsci_high]"] else if(job_engsec_high) - chosenJob = SSjobs.bitflag_to_job["[ENGSEC]"]["job_engsec_high"] + chosenJob = SSjobs.bitflag_to_job["[ENGSEC]"]["[job_engsec_high]"] if(title) return chosenJob.title diff --git a/html/changelogs/mattatlas-ihatebugs.yml b/html/changelogs/mattatlas-ihatebugs.yml new file mode 100644 index 00000000000..9ae5cd348f0 --- /dev/null +++ b/html/changelogs/mattatlas-ihatebugs.yml @@ -0,0 +1,41 @@ +################################ +# 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 +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +# balance +# admin +# backend +# security +# refactor +################################# + +# Your name. +author: MattAtlas + +# 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, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - bugfix: "Ghosts are no longer invisible if from an engineering or security department."