mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 14:39:58 +01:00
## About The Pull Request SAD and VV load prefs overrides quirks, instead of simply adding if missing ## Why It's Good For The Game This is me trying to get people to pester admins less about quirks ## Proof Of Testing Tested, seems to work <details> <summary>Screenshots/Videos</summary> </details> ## Changelog 🆑 add: SAD will now remove any quirks you don't have set in prefs, please don't abuse it. admin: VV load prefs now loads and overrides quirks as well. /🆑
63 lines
1.7 KiB
Plaintext
63 lines
1.7 KiB
Plaintext
/**
|
|
* EXTRA MOB VV
|
|
*/
|
|
/mob/vv_get_dropdown()
|
|
. = ..()
|
|
VV_DROPDOWN_OPTION(VV_HK_SEND_CRYO, "Send to Cryogenic Storage")
|
|
VV_DROPDOWN_OPTION(VV_HK_LOAD_PREFS, "Load Prefs Onto Mob")
|
|
|
|
/mob/vv_do_topic(list/href_list)
|
|
. = ..()
|
|
if(href_list[VV_HK_SEND_CRYO])
|
|
vv_send_cryo()
|
|
|
|
|
|
if(href_list[VV_HK_LOAD_PREFS])
|
|
vv_load_prefs()
|
|
|
|
/**
|
|
* Sends said person to a cryopod.
|
|
*/
|
|
/mob/proc/vv_send_cryo()
|
|
if(!check_rights(R_SPAWN))
|
|
return
|
|
|
|
var/send_notice = tgui_alert(usr, "Add a paper notice about sending [name] into a cryopod?", "Leave a paper?", list("Yes", "No", "Cancel"))
|
|
if(send_notice != "Yes" && send_notice != "No")
|
|
return
|
|
|
|
//log/message
|
|
to_chat(usr, "Put [src] in cryopod.")
|
|
log_admin("[key_name(usr)] has put [key_name(src)] into a cryopod.")
|
|
var/msg = span_notice("[key_name_admin(usr)] has put [key_name(src)] into a cryopod from [ADMIN_VERBOSEJMP(src)].")
|
|
message_admins(msg)
|
|
admin_ticket_log(src, msg)
|
|
|
|
send_notice = send_notice == "Yes"
|
|
send_to_cryo(send_notice)
|
|
|
|
/**
|
|
* Overrides someones mob with their loaded prefs.
|
|
*/
|
|
/mob/proc/vv_load_prefs()
|
|
if(!check_rights(R_ADMIN))
|
|
return
|
|
|
|
if(!client)
|
|
to_chat(usr, span_warning("No client found!"))
|
|
return
|
|
|
|
if(!ishuman(src))
|
|
to_chat(usr, span_warning("Mob is not human!"))
|
|
return
|
|
|
|
var/notice = tgui_alert(usr, "Are you sure you want to load the clients current prefs onto their mob?", "Load Preferences", list("Yes", "No"))
|
|
if(notice != "Yes")
|
|
return
|
|
|
|
client?.prefs?.apply_prefs_to(src)
|
|
SSquirks.OverrideQuirks(src, client)
|
|
var/msg = span_notice("[key_name_admin(usr)] has loaded [key_name(src)]'s preferences onto their current mob [ADMIN_VERBOSEJMP(src)].")
|
|
message_admins(msg)
|
|
admin_ticket_log(src, msg)
|