From cbbb50e012c72c2d4bcb40ea33bb0f6a8769eec7 Mon Sep 17 00:00:00 2001 From: Baa <9057997+Baa14453@users.noreply.github.com> Date: Sun, 21 Apr 2019 22:27:15 +0100 Subject: [PATCH] Fixes a typo for malf AI (#6326) --- code/game/antagonist/station/rogue_ai.dm | 2 +- html/changelogs/SpaceBaa-PR-6326.yml | 41 ++++++++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/SpaceBaa-PR-6326.yml diff --git a/code/game/antagonist/station/rogue_ai.dm b/code/game/antagonist/station/rogue_ai.dm index 96df06441a2..44a24ff9b0d 100644 --- a/code/game/antagonist/station/rogue_ai.dm +++ b/code/game/antagonist/station/rogue_ai.dm @@ -62,7 +62,7 @@ var/datum/antagonist/rogue_ai/malf sleep(10) to_chat(malf, "running MEMCHCK") sleep(50) - to_chat(malf, "MEMCHCK Corrupted sectors confirmed. Reccomended solution: Delete. Proceed? Y/N: Y") + to_chat(malf, "MEMCHCK Corrupted sectors confirmed. Recommended solution: Delete. Proceed? Y/N: Y") sleep(10) // this is so Travis doesn't complain about the backslash-B. Fixed at compile time (or should be). to_chat(malf, "Corrupted files deleted: sys\\core\\users.dat sys\\core\\laws.dat sys\\core\\" + "backups.dat") diff --git a/html/changelogs/SpaceBaa-PR-6326.yml b/html/changelogs/SpaceBaa-PR-6326.yml new file mode 100644 index 00000000000..0aced0ad7df --- /dev/null +++ b/html/changelogs/SpaceBaa-PR-6326.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: SpaceBaa + +# 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: "Fixes a typo during Malf AI startup."