This repository was archived by the owner on May 22, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 456
Adds an RGB upgrade project #13301
Merged
Merged
Adds an RGB upgrade project #13301
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
97dcc43
stash
maxion12345 d4cf58e
functional but seizure inducing
maxion12345 c702422
aaa much better
maxion12345 8d737d7
fucky wucky
maxion12345 38a4073
Update code/modules/mob/living/silicon/ai/decentralized/ai_data_core.dm
maxion12345 e2bbb33
Update
maxion12345 f7d9239
K
maxion12345 855392a
Update code/modules/mob/living/silicon/ai/decentralized/ai_data_core.dm
Bibby0110 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
code/modules/mob/living/silicon/ai/decentralized/projects/rgb.dm
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| /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) | ||
| datacores.partytime() | ||
|
|
||
|
|
||
| /datum/ai_project/rgb/stop() | ||
| for(var/obj/machinery/ai/data_core/datacores in GLOB.data_cores) | ||
| datacores.stoptheparty() | ||
| ..() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.