diff --git a/code/game/machinery/portable_turret.dm b/code/game/machinery/portable_turret.dm
index c7e83d7647e..d5e1bd9d90e 100644
--- a/code/game/machinery/portable_turret.dm
+++ b/code/game/machinery/portable_turret.dm
@@ -400,7 +400,6 @@ var/list/turret_icons
return
if(!(stat & BROKEN))
visible_message("[M] [M.attacktext] [src]!")
- add_logs(M, src, "attacked")
take_damage(M.melee_damage_upper)
else
M << "That object is useless to you."
@@ -412,7 +411,6 @@ var/list/turret_icons
if(!(stat & BROKEN))
playsound(src.loc, 'sound/weapons/slash.ogg', 25, 1, -1)
visible_message("[M] has slashed at [src]!")
- add_logs(M, src, "attacked")
take_damage(15)
else
M << "That object is useless to you."