mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-24 13:38:41 +01: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>
60 lines
2.7 KiB
Plaintext
60 lines
2.7 KiB
Plaintext
GLOBAL_LIST_EMPTY(bunker_passthrough)
|
|
|
|
ADMIN_VERB(addbunkerbypass, R_ADMIN, "Add PB Bypass", "Allows a given ckey to connect despite the panic bunker for a given round.", ADMIN_CATEGORY_MAIN, ckeytobypass as text|null)
|
|
if(!CONFIG_GET(flag/sql_enabled))
|
|
to_chat(usr, span_adminnotice("The Database is not enabled!"))
|
|
return
|
|
|
|
GLOB.bunker_passthrough |= ckey(ckeytobypass)
|
|
GLOB.bunker_passthrough[ckey(ckeytobypass)] = world.realtime
|
|
SSpersistence.save_panic_bunker() //we can do this every time, it's okay
|
|
log_admin("[key_name(usr)] has added [ckeytobypass] to the current round's bunker bypass list.")
|
|
message_admins("[key_name_admin(usr)] has added [ckeytobypass] to the current round's bunker bypass list.")
|
|
|
|
ADMIN_VERB(revokebunkerbypass, R_ADMIN, "Revoke PB Bypass", "Revoke's a ckey's permission to bypass the panic bunker for a given round.", ADMIN_CATEGORY_MAIN, ckeytobypass as text|null)
|
|
if(!CONFIG_GET(flag/sql_enabled))
|
|
to_chat(usr, span_adminnotice("The Database is not enabled!"))
|
|
return
|
|
|
|
GLOB.bunker_passthrough -= ckey(ckeytobypass)
|
|
SSpersistence.save_panic_bunker()
|
|
log_admin("[key_name(usr)] has removed [ckeytobypass] from the current round's bunker bypass list.")
|
|
message_admins("[key_name_admin(usr)] has removed [ckeytobypass] from the current round's bunker bypass list.")
|
|
|
|
/datum/tgs_chat_command/addbunkerbypass
|
|
name = "whitelist"
|
|
help_text = "whitelist <ckey>"
|
|
admin_only = TRUE
|
|
|
|
/datum/tgs_chat_command/addbunkerbypass/Run(datum/tgs_chat_user/sender, params)
|
|
if(!CONFIG_GET(flag/sql_enabled))
|
|
return "The Database is not enabled!"
|
|
|
|
GLOB.bunker_passthrough |= ckey(params)
|
|
|
|
GLOB.bunker_passthrough[ckey(params)] = world.realtime
|
|
SSpersistence.save_panic_bunker() //we can do this every time, it's okay
|
|
log_admin("[sender.friendly_name] has added [params] to the current round's bunker bypass list.")
|
|
message_admins("[sender.friendly_name] has added [params] to the current round's bunker bypass list.")
|
|
return new /datum/tgs_message_content("[params] has been added to the current round's bunker bypass list.")
|
|
|
|
/datum/controller/subsystem/persistence/proc/load_panic_bunker()
|
|
var/bunker_path = file("data/bunker_passthrough.json")
|
|
if(fexists(bunker_path))
|
|
var/list/json = json_decode(file2text(bunker_path))
|
|
GLOB.bunker_passthrough = json["data"]
|
|
for(var/ckey in GLOB.bunker_passthrough)
|
|
if(daysSince(GLOB.bunker_passthrough[ckey]) >= CONFIG_GET(number/max_bunker_days))
|
|
GLOB.bunker_passthrough -= ckey
|
|
|
|
/datum/controller/subsystem/persistence/proc/save_panic_bunker()
|
|
var/json_file = file("data/bunker_passthrough.json")
|
|
var/list/file_data = list()
|
|
file_data["data"] = GLOB.bunker_passthrough
|
|
fdel(json_file)
|
|
WRITE_FILE(json_file,json_encode(file_data))
|
|
|
|
/datum/config_entry/number/max_bunker_days
|
|
default = 7
|
|
min_val = 1
|