Skip to content

Commit

Permalink
even better
Browse files Browse the repository at this point in the history
  • Loading branch information
larentoun committed Oct 30, 2024
1 parent a13ae67 commit f96a4e3
Showing 1 changed file with 5 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,21 +66,19 @@ ADMIN_VERB(ru_names_review_panel, R_ADMIN, "Ru Names Review", "Shows player-sugg
var/message = "approves [suggested_list] for [data["atom_path"]]"
// Here we send message to discord
var/list/webhook_data = list(
"author" = list(
"name" = data["atom_path"]
),
"title" = data["atom_path"],
"fields" = list(
list(
"name" = "Approved by:",
"value" = usr.ckey,
"name" = "Suggested List:",
"value" = suggested_list,
),
list(
"name" = "Suggested by:",
"value" = data["ckey"],
),
list(
"name" = "Suggested List:",
"value" = suggested_list
"name" = "Approved by:",
"value" = usr.ckey,
),
),
)
Expand Down

0 comments on commit f96a4e3

Please sign in to comment.