A dance preferences toggle for the disco machine because I just wanna listen to the music without any of the annoying dancing animations (#20092)

* ughg

* oops

* ok better

* better

now more quality
This commit is contained in:
Octus
2023-02-17 12:53:18 +01:00
committed by GitHub
parent 6bcf0c41ee
commit acab55f038
3 changed files with 17 additions and 5 deletions
@@ -365,3 +365,11 @@
prefs.toggles2 ^= PREFTOGGLE_2_MC_TABS
prefs.save_preferences(src)
to_chat(src, "You will [(prefs.toggles2 & PREFTOGGLE_2_MC_TABS) ? "now" : "no longer"] see the MC tabs on the top right.")
/client/verb/toggle_dance()
set name = "Toggle Disco Machine Dancing"
set category = "Preferences"
set desc = "Toggles automatic dancing from the radiant dance machine"
prefs.toggles2 ^= PREFTOGGLE_2_DANCE_DISCO
prefs.save_preferences(src)
to_chat(usr, "You will [(prefs.toggles2 & PREFTOGGLE_2_DANCE_DISCO) ? "now" : "no longer"] dance to the radiant dance machine.")