mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
* Fixes #8954 * projectile reagetns * removes all attack logs on keyless simple_animals even by keyed mobs * deletes 'potentially' * Tiger request * more comprehensive solution * check for mob * istype * brevity * Split attack logs preference * toggle * deletes old CHAT_ATTACKLOGS * explains what levels do when toggling them * clarification * Tigercat requests
This commit is contained in:
@@ -133,7 +133,7 @@
|
||||
for(var/mob/C in viewers(src))
|
||||
C.show_message("<span class='warning'>[GM.name] has been placed in the [src] by [user].</span>", 3)
|
||||
qdel(G)
|
||||
add_attack_logs(usr, GM, "Disposal'ed", !!GM.ckey)
|
||||
add_attack_logs(usr, GM, "Disposal'ed", !!GM.ckey ? null : ATKLOG_ALL)
|
||||
return
|
||||
|
||||
if(!I)
|
||||
@@ -179,7 +179,7 @@
|
||||
msg = "[user.name] stuffs [target.name] into the [src]!"
|
||||
to_chat(user, "You stuff [target.name] into the [src]!")
|
||||
|
||||
add_attack_logs(user, target, "Disposal'ed", !!target.ckey)
|
||||
add_attack_logs(user, target, "Disposal'ed", !!target.ckey ? null : ATKLOG_ALL)
|
||||
else
|
||||
return
|
||||
target.forceMove(src)
|
||||
|
||||
Reference in New Issue
Block a user