mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-20 11:40:07 +01:00
* Optimize stat panel and fix guardian verbs (#53463) Optimizes stat panel code for better performance, including icon caching and removing some unnecessary processing Also fixes #53432 fix #53381 fix #53724 Changelog add: icons are back on alt clicks fix: horrible performance from alt clicking turfs with multiple objects tweak:browser should notify the SS when it's ready to receive data * Update statbrowser.html * Apply suggestions from code review Co-authored-by: Jared-Fogle <35135081+Jared-Fogle@ users.noreply.github.com> * hidden = TRUE * almost ready * Browser should notify when ready to receive data * Apply MSO's suggestions * reset cache if something in it gets deleted * Fix runtime * fix my stupid code * send href_token when adding admin tabs * fix an issue with cyborg suit topic Co-authored-by: Jared-Fogle <35135081+Jared-Fogle@ users.noreply.github.com> * Optimize stat panel and fix guardian verbs Co-authored-by: Couls <coul422@gmail.com> Co-authored-by: Jared-Fogle <35135081+Jared-Fogle@ users.noreply.github.com>
12 lines
489 B
Plaintext
12 lines
489 B
Plaintext
/client/proc/cinematic()
|
|
set name = "Cinematic"
|
|
set category = "Fun"
|
|
set desc = "Shows a cinematic." // Intended for testing but I thought it might be nice for events on the rare occasion Feel free to comment it out if it's not wanted.
|
|
set hidden = TRUE
|
|
if(!SSticker)
|
|
return
|
|
|
|
var/datum/cinematic/choice = input(src,"Cinematic","Choose",null) as null|anything in sortList(subtypesof(/datum/cinematic), /proc/cmp_typepaths_asc)
|
|
if(choice)
|
|
Cinematic(initial(choice.id),world,null)
|