From f96a4e32cb9279fc3ab40d95ca3c4310de27f1d8 Mon Sep 17 00:00:00 2001 From: larentoun <31931237+larentoun@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:15:14 +0300 Subject: [PATCH] even better --- .../translations/code/translate_suggest_ru_names.dm | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/modular_bandastation/translations/code/translate_suggest_ru_names.dm b/modular_bandastation/translations/code/translate_suggest_ru_names.dm index f24cd8b86b638..8cdc0edc502dc 100644 --- a/modular_bandastation/translations/code/translate_suggest_ru_names.dm +++ b/modular_bandastation/translations/code/translate_suggest_ru_names.dm @@ -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, ), ), )