This commit is contained in:
Ghommie
2019-11-19 18:00:56 +01:00
parent a52e292cc8
commit dd101ef221
113 changed files with 519 additions and 552 deletions

View File

@@ -90,12 +90,12 @@
/obj/item/paper/examine(mob/user)
..()
to_chat(user, "<span class='notice'>Alt-click to fold it.</span>")
. = ..()
. += "<span class='notice'>Alt-click to fold it.</span>"
if(oui_canview(user))
ui.render(user)
else
to_chat(user, "<span class='warning'>You're too far away to read it!</span>")
. += "<span class='warning'>You're too far away to read it!</span>"
/obj/item/paper/proc/show_content(mob/user)
user.examinate(src)

View File

@@ -116,11 +116,11 @@
return ..()
/obj/item/paper_bin/examine(mob/user)
..()
. = ..()
if(total_paper)
to_chat(user, "It contains " + (total_paper > 1 ? "[total_paper] papers" : " one paper")+".")
. += "It contains [total_paper > 1 ? "[total_paper] papers" : " one paper"]."
else
to_chat(user, "It doesn't contain anything.")
. += "It doesn't contain anything."
/obj/item/paper_bin/update_icon()

View File

@@ -118,8 +118,8 @@
H.emote("scream")
/obj/item/paper/examine(mob/user)
..()
to_chat(user, "<span class='notice'>Alt-click [src] to fold it into a paper plane.</span>")
. = ..()
. += "<span class='notice'>Alt-click [src] to fold it into a paper plane.</span>"
/obj/item/paper/AltClick(mob/living/carbon/user, obj/item/I)
if(!istype(user) || !user.canUseTopic(src, BE_CLOSE, ismonkey(user), NO_TK))