mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-06-01 20:30:37 +01:00
386c4f6756
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: C.L. <killer65311@gmail.com>
11 lines
404 B
Plaintext
11 lines
404 B
Plaintext
ADMIN_VERB(cinematic, R_FUN, "Cinematic", "Show a cinematic to all players.", ADMIN_CATEGORY_FUN)
|
|
var/datum/cinematic/choice = tgui_input_list(
|
|
user,
|
|
"Chose a cinematic to play to everyone in the server.",
|
|
"Choose Cinematic",
|
|
sortList(subtypesof(/datum/cinematic), GLOBAL_PROC_REF(cmp_typepaths_asc)),
|
|
)
|
|
if(!choice || !ispath(choice, /datum/cinematic))
|
|
return
|
|
play_cinematic(choice, world)
|