mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-19 11:05:03 +01:00
Removes the the vast majority of 'The the' from the the code (#15597)
* The the * Some more * Review 1 * A couple more
This commit is contained in:
@@ -39,7 +39,7 @@
|
||||
if(istype(W, /obj/item/paper) || istype(W, /obj/item/photo) || istype(W, /obj/item/paper_bundle) || istype(W, /obj/item/documents))
|
||||
user.drop_item()
|
||||
W.loc = src
|
||||
to_chat(user, "<span class='notice'>You put the [W] into \the [src].</span>")
|
||||
to_chat(user, "<span class='notice'>You put [W] into [src].</span>")
|
||||
update_icon()
|
||||
else if(istype(W, /obj/item/pen))
|
||||
rename_interactive(user, W)
|
||||
|
||||
@@ -405,7 +405,7 @@
|
||||
src.loc = get_turf(h_user)
|
||||
if(h_user.client) h_user.client.screen -= src
|
||||
h_user.put_in_hands(B)
|
||||
to_chat(user, "<span class='notice'>You clip the [P.name] to [(src.name == "paper") ? "the paper" : src.name].</span>")
|
||||
to_chat(user, "<span class='notice'>You clip [P] to [(src.name == "paper") ? "the paper" : src.name].</span>")
|
||||
src.loc = B
|
||||
P.loc = B
|
||||
B.amount++
|
||||
|
||||
@@ -168,7 +168,7 @@
|
||||
if(href_list["remove"])
|
||||
var/obj/item/W = src[page]
|
||||
usr.put_in_hands(W)
|
||||
to_chat(usr, "<span class='notice'>You remove the [W.name] from the bundle.</span>")
|
||||
to_chat(usr, "<span class='notice'>You remove [W] from the bundle.</span>")
|
||||
if(amount == 1)
|
||||
var/obj/item/paper/P = src[1]
|
||||
usr.unEquip(src)
|
||||
|
||||
@@ -85,7 +85,7 @@
|
||||
P.loc = user.loc
|
||||
user.put_in_hands(P)
|
||||
P.add_fingerprint(user)
|
||||
to_chat(user, "<span class='notice'>You take [P] out of the [src].</span>")
|
||||
to_chat(user, "<span class='notice'>You take [P] out of [src].</span>")
|
||||
else
|
||||
to_chat(user, "<span class='notice'>[src] is empty!</span>")
|
||||
|
||||
@@ -138,7 +138,7 @@
|
||||
P = new /obj/item/paper/carbon
|
||||
P.loc = user.loc
|
||||
user.put_in_hands(P)
|
||||
to_chat(user, "<span class='notice'>You take [P] out of the [src].</span>")
|
||||
to_chat(user, "<span class='notice'>You take [P] out of [src].</span>")
|
||||
else
|
||||
to_chat(user, "<span class='notice'>[src] is empty!</span>")
|
||||
|
||||
|
||||
@@ -25,7 +25,7 @@
|
||||
pressure_resistance = 2
|
||||
|
||||
/obj/item/pen/suicide_act(mob/user)
|
||||
to_chat(viewers(user), "<span class='suicide'>[user] starts scribbling numbers over [user.p_them()]self with the [name]! It looks like [user.p_theyre()] trying to commit sudoku.</span>")
|
||||
to_chat(viewers(user), "<span class='suicide'>[user] starts scribbling numbers over [user.p_them()]self with [src]! It looks like [user.p_theyre()] trying to commit sudoku.</span>")
|
||||
return BRUTELOSS
|
||||
|
||||
/obj/item/pen/blue
|
||||
|
||||
Reference in New Issue
Block a user