diff --git a/code/modules/mob/living/simple_animal/simple_animal.dm b/code/modules/mob/living/simple_animal/simple_animal.dm
index 6d3ff27d7a9..7b9348d0108 100644
--- a/code/modules/mob/living/simple_animal/simple_animal.dm
+++ b/code/modules/mob/living/simple_animal/simple_animal.dm
@@ -278,7 +278,7 @@
visible_message("[M] [response_harm] [src]!")
playsound(loc, "punch", 25, 1, -1)
attack_threshold_check(harm_intent_damage)
- add_logs(M, src, "attacked", admin=0)
+ add_logs(M, src, "attacked", admin=1)
updatehealth()
return 1
@@ -301,13 +301,13 @@
playsound(loc, 'sound/weapons/pierce.ogg', 25, 1, -1)
visible_message("[M] [response_disarm] [name]!", \
"[M] [response_disarm] [name]!")
- add_logs(M, src, "disarmed", admin=0)
+ add_logs(M, src, "disarmed", admin=1)
else
var/damage = rand(15, 30)
visible_message("[M] has slashed at [src]!", \
"[M] has slashed at [src]!")
playsound(loc, 'sound/weapons/slice.ogg', 25, 1, -1)
- add_logs(M, src, "attacked", admin=0)
+ add_logs(M, src, "attacked", admin=1)
attack_threshold_check(damage)
return 1