forked from space-wizards/space-station-14
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes construction graphs proccing while being microwaved (space-wiza…
…rds#23835) * Fixes construction graphs proccing while being microwaved * git those indents in line * We knew we were missing something!
- Loading branch information
1 parent
1c3c596
commit f5c40c3
Showing
3 changed files
with
77 additions
and
22 deletions.
There are no files selected for viewing
This file contains 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
11 changes: 11 additions & 0 deletions
11
Content.Server/Kitchen/Components/ActivelyMicrowavedComponent.cs
This file contains 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,11 @@ | ||
using Content.Shared.Kitchen; | ||
|
||
namespace Content.Server.Kitchen.Components; | ||
|
||
/// <summary> | ||
/// Attached to an object that's actively being microwaved | ||
/// </summary> | ||
[RegisterComponent] | ||
public sealed partial class ActivelyMicrowavedComponent : Component | ||
{ | ||
} |
This file contains 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