Skip to content

Commit

Permalink
Merge pull request #98 from Artemchik542/better-help-menu
Browse files Browse the repository at this point in the history
Немного улучшает интерфейс игрового окна
  • Loading branch information
Huz2e authored Jun 7, 2024
2 parents 8f4cb38 + d9a5304 commit 796881c
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/modules/client/verbs/who.dm
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
msg += "</tr></table>"

msg += "<b>Total Players: [length(Lines)]</b>"
to_chat(src, "<span class='infoplain'>[msg]</span>")
to_chat(src, examine_block(span_infoplain(msg))) // MASSMETA EDIT (lil bit better ui)

/client/verb/adminwho()
set category = "Admin"
Expand Down
28 changes: 28 additions & 0 deletions interface/skin.dmf
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,34 @@ menu "menu"
command = "Hotkeys-Help"
category = "&Help"
saved-params = "is-checked"

// MASSMETA ADDITION (lil bit better ui)
elem
name = "Refresh TGUI"
command = "refresh-tgui"
category = "&Help"
saved-params = "is-checked"
elem
name = "Fix Chat"
command = "fix-chat"
category = "&Help"
saved-params = "is-checked"
elem
name = "&Who"
command = ""
saved-params = "is-checked"
elem
name = "All Players"
command = "who"
category = "&Who"
saved-params = "is-checked"
elem
name = "Admins Online"
command = "adminwho"
category = "&Who"
saved-params = "is-checked"

// EDIT END


window "mainwindow"
Expand Down

0 comments on commit 796881c

Please sign in to comment.