From b0343f19a241881aa59a7af5250fefa94af829fa Mon Sep 17 00:00:00 2001 From: Lady Fowl <43487478+LadyFowls@users.noreply.github.com> Date: Sun, 27 Oct 2019 01:29:44 -0700 Subject: [PATCH] Fix's Therapy pods vomiting there insides out (#7272) Quite honestly I thought I got all of this shit code out of here. Anyways fixes #7271 --- code/game/objects/structures/therapy.dm | 6 ---- html/changelogs/charkapod.yml | 41 +++++++++++++++++++++++++ 2 files changed, 41 insertions(+), 6 deletions(-) create mode 100644 html/changelogs/charkapod.yml diff --git a/code/game/objects/structures/therapy.dm b/code/game/objects/structures/therapy.dm index 3c3d8b3fd80..99f64db68b2 100644 --- a/code/game/objects/structures/therapy.dm +++ b/code/game/objects/structures/therapy.dm @@ -305,8 +305,6 @@ update_use_power(2) flick("[initial(icon_state)]-anim", src) update_icon() - for(var/obj/O in src) - O.forceMove(get_turf(src)) src.add_fingerprint(usr) return @@ -322,8 +320,6 @@ if(!do_after(H, 1200)) return - for(var/obj/O in src) - O.forceMove(get_turf(src)) if (H.client) H.client.eye = H.client.mob H.client.perspective = MOB_PERSPECTIVE @@ -368,8 +364,6 @@ update_use_power(2) flick("[initial(icon_state)]-anim", src) update_icon() - for(var/obj/O in src) - O.forceMove(get_turf(src)) src.add_fingerprint(user) qdel(G) diff --git a/html/changelogs/charkapod.yml b/html/changelogs/charkapod.yml new file mode 100644 index 00000000000..7cbfa405e00 --- /dev/null +++ b/html/changelogs/charkapod.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: Lady Fowl + +# 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: "Therapy pods no longer spit components out."