From e9ffa2bdbf32f49b6e8c445a3296b3cd28cbc4fc Mon Sep 17 00:00:00 2001 From: grungussuss <96586172+grungussuss@users.noreply.github.com> Date: Sat, 17 May 2025 00:30:09 +0300 Subject: [PATCH] personal player panel improvements (#90988) ## About The Pull Request adds breaks between the lines of first seen, byond account registered tab.
OUTDATED PREVIEW

before:

![image](https://github.com/user-attachments/assets/9390dbc8-31af-4ef9-80f1-56b4fc4956d1)

after:

![image](https://github.com/user-attachments/assets/e593be28-c498-41e0-8be4-53b8524315ba)
## Why It's Good For The Game line breaks are neat for readibility. ## Changelog :cl: grungussuss qol: added some line breaks for the admin player panel for readibility /:cl: --- code/modules/admin/verbs/admingame.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/modules/admin/verbs/admingame.dm b/code/modules/admin/verbs/admingame.dm index 16303302b20..adeefdac6f9 100644 --- a/code/modules/admin/verbs/admingame.dm +++ b/code/modules/admin/verbs/admingame.dm @@ -25,7 +25,8 @@ ADMIN_VERB_ONLY_CONTEXT_MENU(show_player_panel, R_ADMIN, "Show Player Panel", mo body += "
\[Find Updated Panel\]" if(player.client) - body += "
\[First Seen: [player.client.player_join_date]\]\[Byond account registered on: [player.client.account_join_date]\]" + body += "
\[First Seen: [player.client.player_join_date]\]" + body += "
\[Byond account registered on: [player.client.account_join_date]\]" body += "

CentCom Galactic Ban DB: " if(CONFIG_GET(string/centcom_ban_db)) body += "Search" @@ -146,7 +147,7 @@ ADMIN_VERB_ONLY_CONTEXT_MENU(show_player_panel, R_ADMIN, "Show Player Panel", mo body += "
" body += "" - user << browse(body, "window=adminplayeropts-[REF(player)];size=550x515") + user << browse(body, "window=adminplayeropts-[REF(player)];size=550x540") BLACKBOX_LOG_ADMIN_VERB("Player Panel") /client/proc/cmd_admin_godmode(mob/mob in GLOB.mob_list)