Files
Yogstation/code/modules/mob/living/silicon/ai/decentralized/projects/rgb.dm
Maxim 37d8263c1b RGB project fix (#13472)
* kermit

* Revert "kermit"

This reverts commit c44c865773.

* e

* obama last name is president

* Update code/modules/mob/living/silicon/ai/decentralized/projects/rgb.dm

Co-authored-by: TheGamerdk <5618080+TheGamerdk@users.noreply.github.com>
2022-03-20 10:52:12 +00:00

22 lines
597 B
Plaintext

/datum/ai_project/rgb
name = "RGB Lighting"
description = "By varying the current levels in the lighting subsystems of your servers, you can make pretty colors."
research_cost = 250
ram_required = 0
research_requirements_text = "None"
category = AI_PROJECT_MISC
/datum/ai_project/rgb/run_project(force_run = FALSE)
. = ..()
if(!.)
return .
for(var/obj/machinery/ai/data_core/datacores in GLOB.data_cores)
if(!datacores.TimerID)
datacores.partytime()
/datum/ai_project/rgb/stop()
for(var/obj/machinery/ai/data_core/datacores in GLOB.data_cores)
datacores.stoptheparty()
..()