mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
* 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>
22 lines
597 B
Plaintext
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()
|
|
..()
|