fixes notes on doors not visibly having words (#63783)

Is this REALLY the 2021 fuckup of the year?
Anyway, closes #57138
This commit is contained in:
John Willard
2022-01-04 10:41:53 +00:00
committed by GitHub
parent 0315b40e9b
commit 7243909a42
2 changed files with 6 additions and 1 deletions
+6 -1
View File
@@ -1384,7 +1384,12 @@
if(!note)
return
else if(istype(note, /obj/item/paper))
return "note"
var/obj/item/paper/pinned_paper = note
if(pinned_paper.info && pinned_paper.show_written_words)
return "note_words"
else
return "note"
else if(istype(note, /obj/item/photo))
return "photo"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB