From ea5b155057df34fed3c3e010119fe17a229de0cd Mon Sep 17 00:00:00 2001 From: Detective Google <48196179+Detective-Google@users.noreply.github.com> Date: Thu, 25 Jun 2020 19:39:37 -0500 Subject: [PATCH 1/5] lying down now isnt random --- code/modules/mob/living/living_mobility.dm | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/code/modules/mob/living/living_mobility.dm b/code/modules/mob/living/living_mobility.dm index 32038a6102..32586c01bd 100644 --- a/code/modules/mob/living/living_mobility.dm +++ b/code/modules/mob/living/living_mobility.dm @@ -96,7 +96,14 @@ mobility_flags &= ~MOBILITY_STAND setMovetype(movement_type | CRAWLING) if(!lying) //force them on the ground - lying = pick(90, 270) + if(src.dir == 1) + lying = pick(90, 270) + if(src.dir == 2) + lying = pick(90, 270) + if(src.dir == 4) + lying = 90 + if(src.dir == 8) + lying = 270 if(has_gravity() && !buckled) playsound(src, "bodyfall", 20, 1) else From 899837324134d76f566ce369dc7e7a89b6415a52 Mon Sep 17 00:00:00 2001 From: Detective-Google <48196179+Detective-Google@users.noreply.github.com> Date: Thu, 25 Jun 2020 19:58:41 -0500 Subject: [PATCH 2/5] Update code/modules/mob/living/living_mobility.dm Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> --- code/modules/mob/living/living_mobility.dm | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/code/modules/mob/living/living_mobility.dm b/code/modules/mob/living/living_mobility.dm index 32586c01bd..654a979445 100644 --- a/code/modules/mob/living/living_mobility.dm +++ b/code/modules/mob/living/living_mobility.dm @@ -96,14 +96,13 @@ mobility_flags &= ~MOBILITY_STAND setMovetype(movement_type | CRAWLING) if(!lying) //force them on the ground - if(src.dir == 1) - lying = pick(90, 270) - if(src.dir == 2) - lying = pick(90, 270) - if(src.dir == 4) - lying = 90 - if(src.dir == 8) - lying = 270 + switch(dir) + if(NORTH, SOUTH) + lying = pick(90, 270) + if(EAST) + lying = 90 + else //West + lying = 270 if(has_gravity() && !buckled) playsound(src, "bodyfall", 20, 1) else From 7f563c24fdfd6c456c5f0dd3490ab641a63e469f Mon Sep 17 00:00:00 2001 From: CitadelStationBot Date: Fri, 26 Jun 2020 06:40:15 -0500 Subject: [PATCH 3/5] Automatic changelog generation for PR #12610 [ci skip] --- html/changelogs/AutoChangeLog-pr-12610.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 html/changelogs/AutoChangeLog-pr-12610.yml diff --git a/html/changelogs/AutoChangeLog-pr-12610.yml b/html/changelogs/AutoChangeLog-pr-12610.yml new file mode 100644 index 0000000000..8ce28484a7 --- /dev/null +++ b/html/changelogs/AutoChangeLog-pr-12610.yml @@ -0,0 +1,4 @@ +author: "Detective-Google" +delete-after: True +changes: + - tweak: "Lying down is better" From 13c2c335f40fd0f82d0abe0e1e116bb23ee75455 Mon Sep 17 00:00:00 2001 From: silicons <2003111+silicons@users.noreply.github.com> Date: Fri, 26 Jun 2020 10:50:09 -0700 Subject: [PATCH 4/5] Update chat_commands.dm --- code/modules/admin/chat_commands.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/admin/chat_commands.dm b/code/modules/admin/chat_commands.dm index 9b15729a9e..7664d85b7d 100644 --- a/code/modules/admin/chat_commands.dm +++ b/code/modules/admin/chat_commands.dm @@ -84,7 +84,7 @@ GLOBAL_LIST(round_end_notifiees) if(!SSticker.IsRoundInProgress() && SSticker.HasRoundStarted()) return "[sender.mention], the round has already ended!" LAZYINITLIST(GLOB.round_end_notifiees) - GLOB.round_end_notifiees["<@[sender.mention]>"] = TRUE + GLOB.round_end_notifiees[sender.mention] = TRUE return "I will notify [sender.mention] when the round ends." /datum/tgs_chat_command/sdql From 6dc290a192467a84c0ae8c6f7985c2a09bd061fa Mon Sep 17 00:00:00 2001 From: Changelogs Date: Sat, 27 Jun 2020 00:08:12 +0000 Subject: [PATCH 5/5] Automatic changelog compile [ci skip] --- html/changelog.html | 10 ++++++++++ html/changelogs/.all_changelog.yml | 5 +++++ html/changelogs/AutoChangeLog-pr-12592.yml | 4 ---- html/changelogs/AutoChangeLog-pr-12610.yml | 4 ---- 4 files changed, 15 insertions(+), 8 deletions(-) delete mode 100644 html/changelogs/AutoChangeLog-pr-12592.yml delete mode 100644 html/changelogs/AutoChangeLog-pr-12610.yml diff --git a/html/changelog.html b/html/changelog.html index eb29a97c12..16a0ca4665 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -50,6 +50,16 @@ -->
+

27 June 2020

+

Detective-Google updated:

+
    +
  • Lying down is better
  • +
+

timothyteakettle updated:

+
    +
  • felinids now nya when tabled
  • +
+

26 June 2020

Ghommie updated:

    diff --git a/html/changelogs/.all_changelog.yml b/html/changelogs/.all_changelog.yml index 468ba0e049..bad2c30260 100644 --- a/html/changelogs/.all_changelog.yml +++ b/html/changelogs/.all_changelog.yml @@ -26084,3 +26084,8 @@ DO NOT EDIT THIS FILE BY HAND! AUTOMATICALLY GENERATED BY ss13_genchangelog.py. of the same faction. silicons: - bugfix: soap cleans blood again +2020-06-27: + Detective-Google: + - tweak: Lying down is better + timothyteakettle: + - rscadd: felinids now nya when tabled diff --git a/html/changelogs/AutoChangeLog-pr-12592.yml b/html/changelogs/AutoChangeLog-pr-12592.yml deleted file mode 100644 index 6f6fa81dcc..0000000000 --- a/html/changelogs/AutoChangeLog-pr-12592.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "timothyteakettle" -delete-after: True -changes: - - rscadd: "felinids now nya when tabled" diff --git a/html/changelogs/AutoChangeLog-pr-12610.yml b/html/changelogs/AutoChangeLog-pr-12610.yml deleted file mode 100644 index 8ce28484a7..0000000000 --- a/html/changelogs/AutoChangeLog-pr-12610.yml +++ /dev/null @@ -1,4 +0,0 @@ -author: "Detective-Google" -delete-after: True -changes: - - tweak: "Lying down is better"