Skip to content

Commit

Permalink
Renames panels for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
morrowwolf committed Nov 5, 2023
1 parent e37380f commit 38bd237
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions tgui/packages/tgui/interfaces/GameMaster.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,20 +9,20 @@ export const GameMaster = (props, context) => {
<Window width={400} height={500}>
<Window.Content scrollable>
<Stack direction="column" grow>
<SpawningPanel />
<GameMasterSpawningPanel />

<BehaviorPanel />
<GameMasterBehaviorPanel />

<ObjectivePanel />
<GameMasterObjectivePanel />

<CommunicationPanel />
<GameMasterCommunicationPanel />
</Stack>
</Window.Content>
</Window>
);
};

export const SpawningPanel = (props, context) => {
export const GameMasterSpawningPanel = (props, context) => {
const { data, act } = useBackend(context);

return (
Expand Down Expand Up @@ -88,7 +88,7 @@ export const SpawningPanel = (props, context) => {
);
};

export const BehaviorPanel = (props, context) => {
export const GameMasterBehaviorPanel = (props, context) => {
const { data, act } = useBackend(context);

return (
Expand Down Expand Up @@ -118,7 +118,7 @@ export const BehaviorPanel = (props, context) => {
);
};

export const ObjectivePanel = (props, context) => {
export const GameMasterObjectivePanel = (props, context) => {
const { data, act } = useBackend(context);

return (
Expand Down Expand Up @@ -179,7 +179,7 @@ export const ObjectivePanel = (props, context) => {
);
};

export const CommunicationPanel = (props, context) => {
export const GameMasterCommunicationPanel = (props, context) => {
const { data, act } = useBackend(context);

return (
Expand Down

0 comments on commit 38bd237

Please sign in to comment.