From 38514fe2b35f920558bed73ee2abebd3ae72e472 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Barou=C5=A1?= Date: Fri, 30 Oct 2020 18:20:12 +0100 Subject: [PATCH] Borers and other flips of PASSEMOTES will no longer change CANWEAKEN (#10396) --- code/__defines/mobs.dm | 4 ++-- html/changelogs/amunak-mobdefines-fix.yml | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) create mode 100755 html/changelogs/amunak-mobdefines-fix.yml diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm index 264a2513a87..1664c102bb4 100644 --- a/code/__defines/mobs.dm +++ b/code/__defines/mobs.dm @@ -9,7 +9,7 @@ #define CANPARALYSE 0x4 #define CANPUSH 0x8 #define LEAPING 0x10 -#define PASSEMOTES 0x32 // Mob has a cortical borer or holders inside of it that need to see emotes. +#define PASSEMOTES 0x20 // Mob has a cortical borer or holders inside of it that need to see emotes. #define GODMODE 0x1000 #define FAKEDEATH 0x2000 // Replaces stuff like changeling.changeling_fakedeath. #define DISFIGURED 0x4000 // Set but never checked. Remove this sometime and replace occurences with the appropriate organ code @@ -391,4 +391,4 @@ // Robot Overlay Defines #define ROBOT_PANEL_EXPOSED "exposed" #define ROBOT_PANEL_CELL "cell" -#define ROBOT_PANEL_NO_CELL "no cell" \ No newline at end of file +#define ROBOT_PANEL_NO_CELL "no cell" diff --git a/html/changelogs/amunak-mobdefines-fix.yml b/html/changelogs/amunak-mobdefines-fix.yml new file mode 100755 index 00000000000..50d0780c1b0 --- /dev/null +++ b/html/changelogs/amunak-mobdefines-fix.yml @@ -0,0 +1,4 @@ +author: Amunak +delete-after: True +changes: + - bugfix: "Borers and other flips of the PASSEMOTES flag will no longer change the CANWEAKEN flag."