From c4f5dc06e7c8b358ee74a54ce71ec050d9d532a8 Mon Sep 17 00:00:00 2001 From: Fluffy <65877598+FluffyGhoster@users.noreply.github.com> Date: Sat, 9 Dec 2023 13:26:08 +0100 Subject: [PATCH] sdaf (#17910) --- .../structures/stool_bed_chair_nest/chairs.dm | 2 +- .../fluffyghost-fixanotherdoafteruntime.yml | 41 +++++++++++++++++++ 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 html/changelogs/fluffyghost-fixanotherdoafteruntime.yml diff --git a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm index 2d08a3de755..886244f5de3 100644 --- a/code/game/objects/structures/stool_bed_chair_nest/chairs.dm +++ b/code/game/objects/structures/stool_bed_chair_nest/chairs.dm @@ -44,7 +44,7 @@ /obj/structure/bed/stool/chair/MouseDrop_T(mob/target, mob/user) if(target == user && user.loc != loc && (reverse_dir[dir] & angle2dir(Get_Angle(src, user)))) user.visible_message("[user] starts climbing over the back of \the [src]...", SPAN_NOTICE("You start climbing over the back of \the [src]...")) - if(do_after(user, 2 SECONDS, DO_UNIQUE)) + if(do_after(user, 2 SECONDS, do_flags = DO_UNIQUE)) user.forceMove(loc) return return ..() diff --git a/html/changelogs/fluffyghost-fixanotherdoafteruntime.yml b/html/changelogs/fluffyghost-fixanotherdoafteruntime.yml new file mode 100644 index 00000000000..9cd31575c30 --- /dev/null +++ b/html/changelogs/fluffyghost-fixanotherdoafteruntime.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: FluffyGhost + +# 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: "Fixed a runtime with doafter with mousedrops on chairs."