mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-07-14 09:43:49 +01:00
62b8453b69
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
11 lines
411 B
Plaintext
11 lines
411 B
Plaintext
ADMIN_VERB(cinematic, R_FUN, "Cinematic", "Show a cinematic to all players.", ADMIN_CATEGORY_FUN_DO_NOT)
|
|
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)
|