Refactors cinematics.

This commit is contained in:
AnturK
2017-09-26 11:20:05 +02:00
committed by CitadelStationBot
parent 26f0af19e0
commit fd0bc465cc
11 changed files with 316 additions and 29 deletions

View File

@@ -1,3 +1,4 @@
<<<<<<< HEAD
/client/proc/cinematic(cinematic as anything in list("explosion",null))
set name = "cinematic"
set category = "Fun"
@@ -15,4 +16,17 @@
if(0)
override = input(src,"mode = ?","Enter Parameter",null) as anything in list("blob","nuclear emergency","AI malfunction","no override")
SSticker.station_explosion_cinematic(parameter,override)
return
return
=======
/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)
>>>>>>> 1304e83... Refactors cinematics. (#30888)