mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-27 06:00:23 +01:00
reimplements attack and player logs (#19313)
* reomplements attack and player logs * right log cat * updates logging, makesDB optional * regex serarch * . * . * . * sucks * db load * . * . * db logging
This commit is contained in:
@@ -65,7 +65,6 @@
|
||||
if(ismob(loc))
|
||||
var/mob/M = loc
|
||||
T = get_turf(M) //Where is the body located?
|
||||
attack_log = M.attack_log //preserve our attack logs by copying them to our ghost
|
||||
gender = M.gender
|
||||
if(M.mind && M.mind.name)
|
||||
name = M.mind.name
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
if(!message)
|
||||
return
|
||||
|
||||
log_talk("(GHOST SAY) [message]", LOG_SAY)
|
||||
log_talk("(GHOST SAY) [message]", LOG_SAY, color="#9c00bc")
|
||||
|
||||
if (client)
|
||||
if(message)
|
||||
@@ -20,7 +20,7 @@
|
||||
if(!message)
|
||||
return
|
||||
|
||||
log_message("(GHOST EMOTE) [message]", LOG_EMOTE)
|
||||
log_message("(GHOST EMOTE) [message]", LOG_EMOTE, color="#9c00bc")
|
||||
|
||||
if(client)
|
||||
if(message)
|
||||
|
||||
Reference in New Issue
Block a user