diff --git a/code/modules/detectivework/tools/evidencebag.dm b/code/modules/detectivework/tools/evidencebag.dm
index d6cd2daaab4..e0cf153cec2 100644
--- a/code/modules/detectivework/tools/evidencebag.dm
+++ b/code/modules/detectivework/tools/evidencebag.dm
@@ -53,7 +53,7 @@
to_chat(user, "[src] already has something inside it.")
return
- user.visible_message("[user] puts [I] into [src]", "You put [I] inside [src].",\
+ user.visible_message("[user] puts \the [I] into \the [src].", SPAN_NOTICE("You put \the [I] inside \the [src]."),\
"You hear a rustle as someone puts something into a plastic bag.")
icon_state = "evidence"
@@ -74,7 +74,7 @@
/obj/item/evidencebag/attack_self(mob/user as mob)
if(contents.len)
var/obj/item/I = contents[1]
- user.visible_message("[user] takes [I] out of [src]", "You take [I] out of [src].",\
+ user.visible_message("[user] takes \the [I] out of \the [src].", SPAN_NOTICE("You take \the [I] out of \the [src]."),\
"You hear someone rustle around in a plastic bag, and remove something.")
cut_overlays() //remove the overlays
diff --git a/html/changelogs/geeves-evidence_bag_gramer.yml b/html/changelogs/geeves-evidence_bag_gramer.yml
new file mode 100644
index 00000000000..5a5a2a49ac4
--- /dev/null
+++ b/html/changelogs/geeves-evidence_bag_gramer.yml
@@ -0,0 +1,6 @@
+author: Geeves
+
+delete-after: True
+
+changes:
+ - tweak: "Improved the evidence bag collection messages a little bit."
\ No newline at end of file