diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm
index d34bb3565d..c564ebe466 100644
--- a/code/game/objects/items/weapons/storage/backpack.dm
+++ b/code/game/objects/items/weapons/storage/backpack.dm
@@ -399,28 +399,28 @@
return
if(!parachute) //This packs the parachute
- visible_message("\The [H] starts to pack \the [src]!", \
+ H.visible_message("\The [H] starts to pack \the [src]!", \
"You start to pack \the [src]!", \
"You hear the shuffling of cloth.")
if(do_after(H, 50))
- visible_message("\The [H] finishes packing \the [src]!", \
+ H.visible_message("\The [H] finishes packing \the [src]!", \
"You finish packing \the [src]!", \
"You hear the shuffling of cloth.")
parachute = TRUE
else
- visible_message("\The [src] gives up on packing \the [src]!", \
+ H.visible_message("\The [src] gives up on packing \the [src]!", \
"You give up on packing \the [src]!")
return
else //This unpacks the parachute
- visible_message("\The [src] starts to unpack \the [src]!", \
+ H.visible_message("\The [src] starts to unpack \the [src]!", \
"You start to unpack \the [src]!", \
"You hear the shuffling of cloth.")
if(do_after(H, 25))
- visible_message("\The [src] finishes unpacking \the [src]!", \
+ H.visible_message("\The [src] finishes unpacking \the [src]!", \
"You finish unpacking \the [src]!", \
"You hear the shuffling of cloth.")
parachute = FALSE
else
- visible_message("\The [src] decides not to unpack \the [src]!", \
+ H.visible_message("\The [src] decides not to unpack \the [src]!", \
"You decide not to unpack \the [src]!")
return
\ No newline at end of file