From 57c73cd577246f7d317a3f6bd2a0b46f8ec10358 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Wed, 7 Jul 2021 21:45:25 -0400 Subject: [PATCH] Byond will never stop with this huh --- code/game/objects/structures/artstuff.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/artstuff.dm b/code/game/objects/structures/artstuff.dm index b1d7f2b07f2..5a10460e69b 100644 --- a/code/game/objects/structures/artstuff.dm +++ b/code/game/objects/structures/artstuff.dm @@ -490,10 +490,10 @@ var/list/chosen = pick(painting_category) if(!fexists("data/persistent/paintings/[persistence_id]/[chosen["md5"]].png")) //shitmin deleted this art, lets remove json entry to avoid errors painting_category -= list(chosen) - SSpersistence.unpicked_paintings -= chosen + SSpersistence.unpicked_paintings -= list(chosen) continue //and try again painting = chosen - SSpersistence.unpicked_paintings -= chosen + SSpersistence.unpicked_paintings -= list(chosen) var/title = painting["title"] var/author_name = painting["author"]