This commit is contained in:
izac112
2022-02-20 23:23:34 +01:00
150 changed files with 3583 additions and 2303 deletions
+9 -4
View File
@@ -105,11 +105,16 @@
return
/obj/item/weapon/paper/Initialize(mapload)
. = ..()
/obj/item/weapon/paper/Initialize(mapload, var/text, var/title)
. = ..()
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.
was_maploaded = TRUE
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.
was_maploaded = TRUE
/obj/item/weapon/paper/New(var/newloc, var/text, var/title)
..()