Skip to content

Commit

Permalink
final
Browse files Browse the repository at this point in the history
  • Loading branch information
kanopus952 committed Jan 6, 2025
1 parent 469a3da commit d59814d
Show file tree
Hide file tree
Showing 3 changed files with 232 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Content.Server/Access/Systems/AccessSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ public void Update(Entity<AccessReaderComponent> entity)
{ "blue", AccessReaderComponent.CurrentAlertLevel.blue },
{ "red", AccessReaderComponent.CurrentAlertLevel.red },
{ "yellow", AccessReaderComponent.CurrentAlertLevel.yellow },
{ "gamma", AccessReaderComponent.CurrentAlertLevel.gamma }
{ "gamma", AccessReaderComponent.CurrentAlertLevel.gamma },
{ "delta", AccessReaderComponent.CurrentAlertLevel.delta }
};

entity.Comp.Group = string.Empty; // Значение по умолчанию
Expand Down
3 changes: 2 additions & 1 deletion Content.Shared/Access/Components/AccessReaderComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ public enum CurrentAlertLevel : byte
blue,
red,
yellow,
gamma
gamma,
delta
}
// Sunrise-end

Expand Down
Loading

0 comments on commit d59814d

Please sign in to comment.