-
Notifications
You must be signed in to change notification settings - Fork 592
Adds dough to the cookbook + Functionality for listing chemical reactions as recipes. #5354
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Rinary1
merged 22 commits into
ss14Starlight:starlight-dev
from
bynddark8:how-to-cook-for-40-spacemen
Aug 16, 2026
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
f4ddc5f
init
bynddark8 f87fba8
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 8eabfab
whitespace
bynddark8 563bf37
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 4357dcc
locale and weird namespace stuff
bynddark8 41fe104
namespace pt 2 and redundant guidebook entry
bynddark8 5f47d7e
Merge branch 'how-to-cook-for-40-spacemen' of https://github.com/bynd…
bynddark8 c31575e
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 d83d17f
comment fixes and starlight namespace
bynddark8 aebe44a
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 8f33d8f
partial class extension fix
bynddark8 530e607
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 e5fd885
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 260c47a
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 cd4bb17
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 1f951a4
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 42e2907
starlight comment blocks correction
bynddark8 8740152
namespace + whitespace fixes
bynddark8 86416db
resharper
bynddark8 7c56261
Merge branch 'starlight-dev' into how-to-cook-for-40-spacemen
bynddark8 b45106a
test fail no 7
bynddark8 02443ca
whitespace + redundant tags
bynddark8 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
Some comments aren't visible on the classic Files Changed page.
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
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
27 changes: 27 additions & 0 deletions
27
Content.Shared/_Starlight/Chemistry/Reaction/ReactionPrototype.Starlight.cs
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,27 @@ | ||
| using Robust.Shared.Serialization; | ||
|
|
||
| // ReSharper disable once CheckNamespace | ||
| namespace Content.Shared.Chemistry.Reaction; | ||
|
|
||
| public sealed partial class ReactionPrototype | ||
|
bynddark8 marked this conversation as resolved.
|
||
| { | ||
| [DataField] | ||
| public string? GuidebookGroup; | ||
|
|
||
| [DataField] | ||
| public List<string> GuidebookGroups = []; | ||
|
|
||
| public bool InGuidebookGroup(string group) | ||
| { | ||
| if (string.Equals(GuidebookGroup, group, StringComparison.OrdinalIgnoreCase)) | ||
| return true; | ||
|
|
||
| foreach (var guidebookGroup in GuidebookGroups) | ||
| { | ||
| if (string.Equals(guidebookGroup, group, StringComparison.OrdinalIgnoreCase)) | ||
| return true; | ||
| } | ||
|
|
||
| return false; | ||
| } | ||
| } | ||
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 @@ | ||
| guidebook-microwave-reagent-catalyst-label = (catalyst) |
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
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
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
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
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
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
9 changes: 9 additions & 0 deletions
9
Resources/ServerInfo/_Starlight/Guidebook/Service/DoughRecipes.xml
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,9 @@ | ||
| <Document> | ||
|
|
||
| # Dough | ||
|
|
||
| The basis of many baked goods. Simply combine the required components in a beaker. | ||
|
|
||
| <GuideMicrowaveGroupEmbed Group="Dough"/> | ||
|
|
||
| </Document> |
Oops, something went wrong.
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.