Skip to content

Commit 630e5a0

Browse files
some more fixes
1 parent 02de387 commit 630e5a0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

code/game/objects/items/weapons/cosmetics.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,7 @@
754754

755755
/obj/item/weapon/pocket_mirror/arcane
756756
name = "strange pocket mirror"
757-
desc = "is that your reflection? or someone elses."
757+
desc = "Is that your reflection? Or someone else's..."
758758
arcanetampered = 1
759759

760760

code/modules/hydroponics/hydro_tray.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ var/list/hydro_trays = list()
228228
lastcycle = world.time
229229
weedlevel = 0
230230
update_icon()
231-
visible_message("<span class='info'>[initial(name)] has been overtaken by [seed.display_name]</span>.")
231+
visible_message("<span class='info'>The [initial(name)] has been overtaken by [seed.display_name]</span>.")
232232

233233
return
234234

code/modules/surgery/implant.dm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
if (affected.implants.len)
197197
var/obj/item/obj = affected.implants[affected.implants.len]
198198
user.visible_message("<span class='notice'>[user] takes something out of incision on [target]'s [affected.display_name] with \the [tool].</span>", \
199-
"<span class='notice'>You take [obj] out of incision on [target]'s [affected.display_name]s with \the [tool].</span>" )
199+
"<span class='notice'>You take [obj] out of the incision on [target]'s [affected.display_name] with \the [tool].</span>" )
200200
affected.implants -= obj
201201

202202
//Handle possessive brain borers.
@@ -214,7 +214,7 @@
214214
obj.forceMove(get_turf(target))
215215
else if (affected.hidden)
216216
user.visible_message("<span class='notice'>[user] takes something out of incision on [target]'s [affected.display_name] with \the [tool].</span>", \
217-
"<span class='notice'>You take something out of incision on [target]'s [affected.display_name]s with \the [tool].</span>" )
217+
"<span class='notice'>You take something out of the incision on [target]'s [affected.display_name] with \the [tool].</span>" )
218218
affected.hidden.forceMove(get_turf(target))
219219
user.put_in_hands(affected.hidden)
220220
if(!affected.hidden.blood_DNA)
@@ -225,7 +225,7 @@
225225

226226
else if (tool.clumsy_check(user) && prob(20))
227227
user.visible_message("<span class='notice'>[user] takes something out of incision on [target]'s [affected.display_name] with \the [tool].</span>", \
228-
"<span class='notice'>You take something out of incision on [target]'s [affected.display_name]s with \the [tool].</span>" )
228+
"<span class='notice'>You take something out of the incision on [target]'s [affected.display_name] with \the [tool].</span>" )
229229
var/obj/clowndigobj = pick(/obj/item/weapon/bikehorn/rubberducky, /obj/item/weapon/reagent_containers/food/snacks/pie, /obj/item/toy/singlecard, /obj/item/clothing/accessory/waterflower)
230230
clowndigobj = new clowndigobj(target.loc)
231231
if (istype(clowndigobj, /obj/item/toy/singlecard))

code/modules/virus2/dishincubator.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@
188188
if(!stage_to_focus)
189189
to_chat(usr, "<span class='notice'>The effect focusing is now turned off.</span>")
190190
else
191-
to_chat(usr, "span class='notice'>\The [src] will now focus on stage [stage_to_focus].</span>")
191+
to_chat(usr, "<span class='notice'>\The [src] will now focus on stage [stage_to_focus].</span>")
192192
effect_focus = stage_to_focus
193193
return TRUE
194194

0 commit comments

Comments
 (0)