Reduce admin log spam

This commit is contained in:
Aronai Sieyes
2020-05-12 17:08:41 -04:00
parent 9c3092c7d9
commit 0327a2d186
+2 -1
View File
@@ -397,7 +397,7 @@
// Default implementation calls M.death() and removes from internal contents.
// Indigestable items are removed, and M is deleted.
/obj/belly/proc/digestion_death(mob/living/M)
message_admins("[key_name(owner)] has digested [key_name(M)] in their [lowertext(name)] ([owner ? ADMIN_JMP(owner) : "null"])")
add_attack_logs(owner, M, "Digested in [lowertext(name)]")
// If digested prey is also a pred... anyone inside their bellies gets moved up.
if(is_vore_predator(M))
@@ -439,6 +439,7 @@
//Incase they have the loop going, let's double check to stop it.
M.stop_sound_channel(CHANNEL_PREYLOOP)
// Delete the digested mob
M.ghostize() // Make sure they're out, so we can copy attack logs and such.
qdel(M)
// Handle a mob being absorbed