Fix many instances of "the the"

This commit is contained in:
Jordan Brown
2017-10-13 09:41:54 -05:00
committed by CitadelStationBot
parent 692e226d24
commit bd7a0d65b5
60 changed files with 869 additions and 135 deletions
@@ -70,10 +70,10 @@
if(!DG.reagents.total_volume) //glass is empty
qdel(DG)
glasses++
to_chat(user, "<span class='notice'>The [src] accepts the drinking glass, sterilizing it.</span>")
to_chat(user, "<span class='notice'>[src] accepts the drinking glass, sterilizing it.</span>")
else if(istype(O, /obj/item/reagent_containers/food/snacks))
if(isFull())
to_chat(user, "<span class='warning'>The [src] is at full capacity.</span>")
to_chat(user, "<span class='warning'>[src] is at full capacity.</span>")
else
var/obj/item/reagent_containers/food/snacks/S = O
if(!user.transferItemToLoc(S, src))
@@ -87,12 +87,12 @@
if(G.get_amount() >= 1)
G.use(1)
glasses += 4
to_chat(user, "<span class='notice'>The [src] accepts a sheet of glass.</span>")
to_chat(user, "<span class='notice'>[src] accepts a sheet of glass.</span>")
else if(istype(O, /obj/item/storage/bag/tray))
var/obj/item/storage/bag/tray/T = O
for(var/obj/item/reagent_containers/food/snacks/S in T.contents)
if(isFull())
to_chat(user, "<span class='warning'>The [src] is at full capacity.</span>")
to_chat(user, "<span class='warning'>[src] is at full capacity.</span>")
break
else
T.remove_from_storage(S, src)
@@ -138,11 +138,11 @@
if(href_list["mix"])
if(reagents.trans_id_to(mixer, href_list["mix"], portion) == 0)
to_chat(usr, "<span class='warning'>The [mixer] is full!</span>")
to_chat(usr, "<span class='warning'>[mixer] is full!</span>")
if(href_list["transfer"])
if(mixer.reagents.trans_id_to(src, href_list["transfer"], portion) == 0)
to_chat(usr, "<span class='warning'>The [src] is full!</span>")
to_chat(usr, "<span class='warning'>[src] is full!</span>")
updateDialog()