From 29b423483e4222e830c4d4af70812f82791d1fdd Mon Sep 17 00:00:00 2001 From: Xackii <120736708+Xackii@users.noreply.github.com> Date: Sat, 21 Sep 2024 01:04:22 +0300 Subject: [PATCH] Fix: museum keycard spawns in toilet but you can't pick it from cistern. (#86770) ## About The Pull Request Keycard is spawning in one of gateway museum toilets contents but you can't get it. Destroying the toilet also does not give the keycard. ## Changelog :cl: fix: Gateway museum keycard now spawns in toilet properly. /:cl: --- code/modules/mapfluff/ruins/objects_and_mobs/museum.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mapfluff/ruins/objects_and_mobs/museum.dm b/code/modules/mapfluff/ruins/objects_and_mobs/museum.dm index fc9f8d36ce0..aac22db015b 100644 --- a/code/modules/mapfluff/ruins/objects_and_mobs/museum.dm +++ b/code/modules/mapfluff/ruins/objects_and_mobs/museum.dm @@ -199,6 +199,6 @@ var/obj/structure/toilet/destination = pick(partners) forceMove(destination) destination.w_items += w_class - destination.contents += src + LAZYADD(destination.cistern_items, src) #undef CAFE_KEYCARD_TOILETS