Skip to content

Commit

Permalink
That may have been the actual ID and not their alias
Browse files Browse the repository at this point in the history
  • Loading branch information
Oblisk234 committed Nov 30, 2024
1 parent 4bdec9a commit b6d196c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yogstation/code/modules/mentor/mentorpm.dm
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@

var/datum/DBQuery/add_mhelp_query = SSdbcore.NewQuery(
"INSERT INTO `[format_table_name("mentor_interactions")]` (round_id, ckey, ckey_mentor, target_ckey, target_mentor, message) VALUES (:round, :send, :smentor, :receive, :rmentor, :msg);",
list("round" = GLOB.round_id, "send" = ckey, "smentor" = is_mentor(), "receive" = discord_id ? discord_id : C.ckey, "rmentor" = C.is_mentor(), "msg" = msg)
list("round" = GLOB.round_id, "send" = ckey, "smentor" = is_mentor(), "receive" = discord_id ? whom : C.ckey, "rmentor" = C.is_mentor(), "msg" = msg)
)
if(!add_mhelp_query.Execute())
message_admins("Failed insert mhelp into mhelp DB. Check the SQL error logs for more details.")
Expand Down

0 comments on commit b6d196c

Please sign in to comment.