diff --git a/code/game/machinery/computer/card.dm b/code/game/machinery/computer/card.dm
index 66e2ec25779..9d7a525b763 100644
--- a/code/game/machinery/computer/card.dm
+++ b/code/game/machinery/computer/card.dm
@@ -412,6 +412,7 @@ var/time_last_changed_position = 0
time_last_changed_position = world.time / 10
j.total_positions++
opened_positions[edit_job_target]++
+ log_game("[key_name(usr)] has opened a job slot for job \"[j.name]\".")
nanomanager.update_uis(src)
if("make_job_unavailable")
@@ -428,6 +429,7 @@ var/time_last_changed_position = 0
time_last_changed_position = world.time / 10
j.total_positions--
opened_positions[edit_job_target]--
+ log_game("[key_name(usr)] has closed a job slot for job \"[j.name]\".")
nanomanager.update_uis(src)
if(modify)
diff --git a/code/modules/admin/verbs/custom_event.dm b/code/modules/admin/verbs/custom_event.dm
index 350ed9a8737..3dc31df8169 100644
--- a/code/modules/admin/verbs/custom_event.dm
+++ b/code/modules/admin/verbs/custom_event.dm
@@ -10,11 +10,11 @@
var/input = input(usr, "Enter the description of the custom event. Be descriptive. To cancel the event, make this blank or hit cancel.", "Custom Event", custom_event_msg) as message|null
if(!input || input == "")
custom_event_msg = null
- log_admin("[usr.key] has cleared the custom event text.")
+ log_admin("[key)_name(usr)] has cleared the custom event text.")
message_admins("[key_name_admin(usr)] has cleared the custom event text.")
return
- log_admin("[usr.key] has changed the custom event text.")
+ log_admin("[key_name(usr)] has changed the custom event text.")
message_admins("[key_name_admin(usr)] has changed the custom event text.")
custom_event_msg = input
diff --git a/code/modules/mob/living/simple_animal/bot/bot.dm b/code/modules/mob/living/simple_animal/bot/bot.dm
index 14281d3728d..5bafceffcfc 100644
--- a/code/modules/mob/living/simple_animal/bot/bot.dm
+++ b/code/modules/mob/living/simple_animal/bot/bot.dm
@@ -841,6 +841,7 @@ Pass a positive integer as an argument to override a bot's default speed.
to_chat(usr, "[text_hack]")
show_laws()
bot_reset()
+ add_logs(usr, src, "hacked")
else if(!hacked)
to_chat(usr, "[text_dehack_fail]")
else
@@ -849,6 +850,7 @@ Pass a positive integer as an argument to override a bot's default speed.
to_chat(usr, "[text_dehack]")
show_laws()
bot_reset()
+ add_logs(usr, src, "dehacked")
if("ejectpai")
if(paicard && (!locked || issilicon(usr) || usr.can_admin_interact()))
to_chat(usr, "You eject [paicard] from [bot_name]")