diff --git a/code/modules/mob/living/carbon/human/species.dm b/code/modules/mob/living/carbon/human/species.dm
index ee8a276dd52..28d9774d48a 100644
--- a/code/modules/mob/living/carbon/human/species.dm
+++ b/code/modules/mob/living/carbon/human/species.dm
@@ -1376,7 +1376,7 @@ GLOBAL_LIST_EMPTY(roundstart_races)
else if(target_table)
target.Knockdown(SHOVE_KNOCKDOWN_TABLE)
target.visible_message("[user.name] shoves [target.name] onto \the [target_table]!",
- "You're shoved onto \the [target_table] by [target.name]!", "You hear aggressive shuffling followed by a loud thud!", COMBAT_MESSAGE_RANGE, user)
+ "You're shoved onto \the [target_table] by [user.name]!", "You hear aggressive shuffling followed by a loud thud!", COMBAT_MESSAGE_RANGE, user)
to_chat(user, "You shove [target.name] onto \the [target_table]!")
target.throw_at(target_table, 1, 1, null, FALSE) //1 speed throws with no spin are basically just forcemoves with a hard collision check
log_combat(user, target, "shoved", "onto [target_table] (table)")
@@ -1384,7 +1384,7 @@ GLOBAL_LIST_EMPTY(roundstart_races)
target.Knockdown(SHOVE_KNOCKDOWN_HUMAN)
target_collateral_human.Knockdown(SHOVE_KNOCKDOWN_COLLATERAL)
target.visible_message("[user.name] shoves [target.name] into [target_collateral_human.name]!",
- "You're shoved into [target_collateral_human.name] by [target.name]!", "You hear aggressive shuffling followed by a loud thud!", COMBAT_MESSAGE_RANGE, user)
+ "You're shoved into [target_collateral_human.name] by [user.name]!", "You hear aggressive shuffling followed by a loud thud!", COMBAT_MESSAGE_RANGE, user)
to_chat(user, "You shove [target.name] into [target_collateral_human.name]!")
log_combat(user, target, "shoved", "into [target_collateral_human.name]")
else if(target_disposal_bin)