mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-06 15:02:29 +00:00
Bring _HELPERS/_lists.dm to latest standards by: -Adding proper documentation and fixing existing one -Giving vars proper names -Procs now use snake case as per standard (many files that use those procs will be affected)
12 lines
496 B
Plaintext
12 lines
496 B
Plaintext
/client/proc/cinematic()
|
|
set name = "Cinematic"
|
|
set category = "Admin.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 sort_list(subtypesof(/datum/cinematic), /proc/cmp_typepaths_asc)
|
|
if(choice)
|
|
Cinematic(initial(choice.id),world,null)
|