From 6acf747711be3440fc78cd2f825e30321acdbd23 Mon Sep 17 00:00:00 2001
From: Victor Zisthus <56660717+VictorZisthus@users.noreply.github.com>
Date: Fri, 12 Aug 2022 21:39:10 -0400
Subject: [PATCH] Mutes some adminlog spam
Title.
We don't want to get pinged with every spell cast, or notified everytime a dogborg vores someone.
---
code/game/gamemodes/cult/construct_spells.dm | 2 +-
code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/code/game/gamemodes/cult/construct_spells.dm b/code/game/gamemodes/cult/construct_spells.dm
index 62cdd5bf48..5bd8929555 100644
--- a/code/game/gamemodes/cult/construct_spells.dm
+++ b/code/game/gamemodes/cult/construct_spells.dm
@@ -512,7 +512,7 @@
var/obj/item/projectile/new_projectile = make_projectile(spell_projectile, user)
new_projectile.old_style_target(hit_atom)
new_projectile.fire()
- log_and_message_admins("has casted [src] at \the [hit_atom].")
+ log_attack("has casted [src] at \the [hit_atom].")//CHOMPEdit from log_and_message_admins
if(fire_sound)
playsound(src, fire_sound, 75, 1)
return 1
diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
index 54fca8d569..322cd43400 100644
--- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
+++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm
@@ -128,7 +128,7 @@
trashman.reset_view(src)
START_PROCESSING(SSobj, src)
user.visible_message("[hound.name]'s [src.name] groans lightly as [trashman] slips inside.", "Your [src.name] groans lightly as [trashman] slips inside.")
- message_admins("[key_name(hound)] has eaten [key_name(patient)] as a dogborg. ([hound ? "JMP" : "null"])")
+ log_attack("[key_name(hound)] has eaten [key_name(patient)] as a dogborg. ([hound ? "JMP" : "null"])")//CHOMPEdit from message_admins
playsound(src, gulpsound, vol = 100, vary = 1, falloff = 0.1, preference = /datum/client_preference/eating_noises)
if(delivery)
if(islist(deliverylists[delivery_tag]))