mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-08 07:52:54 +00:00
* Cinematic refactor p1 * Refactors cinematics & related fixes * Fix and cleanup * Fixes survivor gibbing. * qdel_null
11 lines
455 B
Plaintext
11 lines
455 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 = 1
|
|
if(!SSticker)
|
|
return
|
|
|
|
var/datum/cinematic/choice = input(src,"Cinematic","Choose",null) as anything in subtypesof(/datum/cinematic)
|
|
if(choice)
|
|
Cinematic(initial(choice.id),world,null) |