diff --git a/code/game/machinery/flasher.dm b/code/game/machinery/flasher.dm
index e29b1e9d462..0f8ab19d8df 100644
--- a/code/game/machinery/flasher.dm
+++ b/code/game/machinery/flasher.dm
@@ -172,7 +172,7 @@
/obj/item/wallframe/flasher/examine(mob/user)
..()
- user << "It's channel ID is '[id]'."
+ user << "Its channel ID is '[id]'."
/obj/item/wallframe/flasher/after_attach(var/obj/O)
..()
diff --git a/code/game/objects/items/weapons/storage/boxes.dm b/code/game/objects/items/weapons/storage/boxes.dm
index 5c3fbfda247..1318eb83325 100644
--- a/code/game/objects/items/weapons/storage/boxes.dm
+++ b/code/game/objects/items/weapons/storage/boxes.dm
@@ -193,6 +193,7 @@
var/obj/item/wallframe/flasher/frame = new(src)
frame.id = id
new /obj/item/device/assembly/flash/handheld(src)
+ new /obj/item/weapon/screwdriver(src)
/obj/item/weapon/storage/box/teargas
diff --git a/code/modules/assembly/doorcontrol.dm b/code/modules/assembly/doorcontrol.dm
index 1e3bba9b17e..a4cd973559c 100644
--- a/code/modules/assembly/doorcontrol.dm
+++ b/code/modules/assembly/doorcontrol.dm
@@ -10,7 +10,7 @@
/obj/item/device/assembly/control/examine(mob/user)
..()
if(id)
- user << "It's channel ID is '[id]'."
+ user << "Its channel ID is '[id]'."
/obj/item/device/assembly/control/activate()