Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
realforest2001 committed Apr 3, 2024
1 parent 7325bca commit 364162a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion code/__DEFINES/ARES.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/// High Command, can read the deletion log.
#define ARES_ACCESS_HIGH 9
#define ARES_ACCESS_WY_COMMAND 10
/// Debugging. Allows me to view everything without using a high command rank. Unlikely to stay in a full merge.
/// Debugging. Allows me to view everything without using a high command rank.
#define ARES_ACCESS_DEBUG 11

#define ARES_RECORD_ANNOUNCE "Announcement Record"
Expand Down
6 changes: 3 additions & 3 deletions tgui/packages/tgui/interfaces/AresInterface.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ const MainMenu = (props) => {
</Stack.Item>
</Stack>
)}
{access_level >= 6 && (
{(access_level >= 6 || access_level === 3) && (
<Stack>
<Stack.Item grow>
<h3>Access Level 6</h3>
Expand All @@ -299,13 +299,13 @@ const MainMenu = (props) => {
</Stack.Item>
<Stack.Item>
<Button
content="Core Security Protocols"
content="Core Security"
tooltip="Utilise the AI Core security features."
icon="shield"
color="red"
ml="auto"
px="2rem"
width="27vw"
width="25vw"
bold
onClick={() => act('page_core_sec')}
/>
Expand Down

0 comments on commit 364162a

Please sign in to comment.