mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-13 17:23:44 +01:00
[MIRROR] move those back (#12593)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
782a26dc71
commit
2df38bdbcc
@@ -271,7 +271,7 @@ ADMIN_VERB(PlayerNotes, R_ADMIN|R_MOD|R_EVENT|R_DEBUG, "Player Notes", "Access t
|
||||
|
||||
ADMIN_VERB(show_player_info, R_ADMIN|R_MOD|R_EVENT|R_DEBUG, "Show Player Info", "Access the player info.", ADMIN_CATEGORY_INVESTIGATE)
|
||||
var/datum/tgui_module/player_notes_info/A = new(src)
|
||||
A.tgui_interact(user)
|
||||
A.tgui_interact(user.mob)
|
||||
|
||||
ADMIN_VERB(access_news_network, R_ADMIN|R_EVENT, "Access Newscaster Network", "Allows you to view, add and edit news feeds.", ADMIN_CATEGORY_FUN_EVENT_KIT)
|
||||
var/dat = text("<H3>Admin Newscaster Unit</H3>")
|
||||
|
||||
@@ -1911,6 +1911,22 @@
|
||||
return
|
||||
|
||||
SSadmin_verbs.dynamic_invoke_verb(usr.client, /datum/admin_verb/despawn_player, carbon_target)
|
||||
|
||||
// player info stuff
|
||||
if(href_list["notes"])
|
||||
var/ckey = href_list["ckey"]
|
||||
if(!ckey)
|
||||
var/mob/M = locate(href_list["mob"])
|
||||
if(ismob(M))
|
||||
ckey = M.ckey
|
||||
|
||||
switch(href_list["notes"])
|
||||
if("show")
|
||||
var/datum/tgui_module/player_notes_info/A = new(src)
|
||||
A.key = ckey
|
||||
A.tgui_interact(usr)
|
||||
if("list")
|
||||
PlayerNotesPage(usr, text2num(href_list["index"]))
|
||||
return
|
||||
|
||||
/mob/living/proc/can_centcom_reply()
|
||||
|
||||
Reference in New Issue
Block a user