From e969e89ce5895e6178c225e5c16abaeddf413919 Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Mon, 14 Oct 2019 03:09:15 +0200 Subject: [PATCH] Well, byond quirks. --- code/game/objects/structures/bedsheet_bin.dm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/bedsheet_bin.dm b/code/game/objects/structures/bedsheet_bin.dm index 238f74d078..1f7f0ab391 100644 --- a/code/game/objects/structures/bedsheet_bin.dm +++ b/code/game/objects/structures/bedsheet_bin.dm @@ -353,7 +353,8 @@ LINEN BINS sheets.Remove(B) else - B = new pick(sheet_types) + var/chosen = pick(sheet_types) + B = new chosen B.forceMove(drop_location()) user.put_in_hands(B) @@ -377,7 +378,8 @@ LINEN BINS sheets.Remove(B) else - B = new pick(sheet_types) + var/chosen = pick(sheet_types) + B = new chosen B.forceMove(drop_location()) to_chat(user, "You telekinetically remove [B] from [src].")