mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 08:31:54 +00:00
* Admin Verb Datums MkIII | Now with functional command bar (#82511) * Modular stuffs * Put some admin jump verbs back into the context menu | sorts area jump list again (#82647) ## About The Pull Request See title. ## Why It's Good For The Game Some admins wanted all the jump verbs back, aswell as making them not AGhost you. Also make the Jump To Area verb use a sorted list again * Hey what if admins were allowed to use the player panel (#82682) Re-adds the player panel verb to the verb panel. * Controller Overview UI (#82739) * Fixes a minor spelling mistake on the admin panel/verb list (#82747) ## About The Pull Request Corrects `inisimin` to `invisimin`. This addresses #82728, but only fixes one of the two issues mentioned ## Why It's Good For The Game -1 spelling mistake ## Changelog 🆑 spellcheck: 'inisimin' verb corrected to 'invisimin' /🆑 * Player Panel-age (#82757) * Admin Forced Mob Rename and Preference Update (#82715) --------- Co-authored-by: Zephyr <12817816+ZephyrTFA@users.noreply.github.com> Co-authored-by: Useroth <37159550+Useroth@users.noreply.github.com> Co-authored-by: chel <64568243+iliyaxox@users.noreply.github.com>
44 lines
1.3 KiB
Plaintext
44 lines
1.3 KiB
Plaintext
// Admin Verbs in this file are special and cannot use the AVD system for some reason or another.
|
|
|
|
/client/proc/show_verbs()
|
|
set name = "Adminverbs - Show"
|
|
set category = ADMIN_CATEGORY_MAIN
|
|
|
|
remove_verb(src, /client/proc/show_verbs)
|
|
add_admin_verbs()
|
|
|
|
to_chat(src, span_interface("All of your adminverbs are now visible."), confidential = TRUE)
|
|
BLACKBOX_LOG_ADMIN_VERB("Show Adminverbs")
|
|
|
|
/client/proc/readmin()
|
|
set name = "Readmin"
|
|
set category = "Admin"
|
|
set desc = "Regain your admin powers."
|
|
|
|
var/datum/admins/A = GLOB.deadmins[ckey]
|
|
|
|
if(!A)
|
|
A = GLOB.admin_datums[ckey]
|
|
if (!A)
|
|
var/msg = " is trying to readmin but they have no deadmin entry"
|
|
message_admins("[key_name_admin(src)][msg]")
|
|
log_admin_private("[key_name(src)][msg]")
|
|
return
|
|
|
|
A.associate(src)
|
|
|
|
if (!holder)
|
|
return //This can happen if an admin attempts to vv themself into somebody elses's deadmin datum by getting ref via brute force
|
|
|
|
to_chat(src, span_interface("You are now an admin."), confidential = TRUE)
|
|
message_admins("[src] re-adminned themselves.")
|
|
log_admin("[src] re-adminned themselves.")
|
|
BLACKBOX_LOG_ADMIN_VERB("Readmin")
|
|
|
|
/client/proc/admin_2fa_verify()
|
|
set name = "Verify Admin"
|
|
set category = "Admin"
|
|
|
|
var/datum/admins/admin = GLOB.admin_datums[ckey]
|
|
admin?.associate(src)
|