Merge pull request #4686 from VictorZisthus/adminlog-spam

Mutes some adminlog spam
This commit is contained in:
Razgriz
2022-08-13 01:19:56 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -512,7 +512,7 @@
var/obj/item/projectile/new_projectile = make_projectile(spell_projectile, user) var/obj/item/projectile/new_projectile = make_projectile(spell_projectile, user)
new_projectile.old_style_target(hit_atom) new_projectile.old_style_target(hit_atom)
new_projectile.fire() 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) if(fire_sound)
playsound(src, fire_sound, 75, 1) playsound(src, fire_sound, 75, 1)
return 1 return 1

View File

@@ -128,7 +128,7 @@
trashman.reset_view(src) trashman.reset_view(src)
START_PROCESSING(SSobj, src) START_PROCESSING(SSobj, src)
user.visible_message("<span class='warning'>[hound.name]'s [src.name] groans lightly as [trashman] slips inside.</span>", "<span class='notice'>Your [src.name] groans lightly as [trashman] slips inside.</span>") user.visible_message("<span class='warning'>[hound.name]'s [src.name] groans lightly as [trashman] slips inside.</span>", "<span class='notice'>Your [src.name] groans lightly as [trashman] slips inside.</span>")
message_admins("[key_name(hound)] has eaten [key_name(patient)] as a dogborg. ([hound ? "<a href='?_src_=holder;adminplayerobservecoodjump=1;X=[hound.x];Y=[hound.y];Z=[hound.z]'>JMP</a>" : "null"])") log_attack("[key_name(hound)] has eaten [key_name(patient)] as a dogborg. ([hound ? "<a href='?_src_=holder;adminplayerobservecoodjump=1;X=[hound.x];Y=[hound.y];Z=[hound.z]'>JMP</a>" : "null"])")//CHOMPEdit from message_admins
playsound(src, gulpsound, vol = 100, vary = 1, falloff = 0.1, preference = /datum/client_preference/eating_noises) playsound(src, gulpsound, vol = 100, vary = 1, falloff = 0.1, preference = /datum/client_preference/eating_noises)
if(delivery) if(delivery)
if(islist(deliverylists[delivery_tag])) if(islist(deliverylists[delivery_tag]))