From 34b26a9051d3a8381d5d3bf6078b45fd541ea0b0 Mon Sep 17 00:00:00 2001 From: PrismaticGynoid Date: Sun, 17 Oct 2021 15:20:15 -0700 Subject: [PATCH] Fix paper --- code/modules/paperwork/paper.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index a86707d8412..9e78f7e942d 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -109,9 +109,9 @@ /obj/item/weapon/paper/Initialize(mapload, var/text, var/title) . = ..() - if(istext(text)) - name = title if(istext(title)) + name = title + if(istext(text)) info = text if(mapload) // Jank, but we do this to prevent maploaded papers from somehow stacking across rounds if re-added to the board by a player.