mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 21:48:39 +01:00
Makes EMP logs less bad (#93841)
## About The Pull Request closes #93805 ## Why It's Good For The Game we actually have almost no emp logging at all lol, not even emp chem reaction, so you barely can track potential griefer? ## Changelog 🆑 admin: EMP logs are improved, additionally chemical EMP reactions are now logged. /🆑
This commit is contained in:
@@ -17,4 +17,5 @@
|
||||
/obj/item/book/granter/action/spell/charge/recoil(mob/living/user)
|
||||
. = ..()
|
||||
to_chat(user,span_warning("[src] suddenly feels very warm!"))
|
||||
empulse(src, 1, 1)
|
||||
empulse(src, 1, 1, emp_source = src)
|
||||
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
. = ..()
|
||||
if(!.)
|
||||
return
|
||||
|
||||
update_mob()
|
||||
empulse(src, 4, 10)
|
||||
empulse(src, 4, 10, emp_source = src)
|
||||
qdel(src)
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
/obj/item/implant/emp/activate()
|
||||
. = ..()
|
||||
uses--
|
||||
empulse(imp_in, 3, 5)
|
||||
empulse(imp_in, 3, 5, emp_source = src)
|
||||
if(!uses)
|
||||
qdel(src)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user