Merge pull request #12197 from Ghommie/Ghommie-cit739

A little airlock electronics tgui Fix, courtesy of YakumoChen
This commit is contained in:
Lin
2020-05-27 22:41:26 +00:00
committed by GitHub
2 changed files with 3 additions and 3 deletions
@@ -79,7 +79,7 @@ export const AirlockElectronics = props => {
/>
<Button
icon={data.unres_direction & 2 ? 'check-square-o' : 'square-o'}
content="East"
content="South"
selected={data.unres_direction & 2}
onClick={() => act('direc_set', {
unres_direction: '2',
@@ -87,7 +87,7 @@ export const AirlockElectronics = props => {
/>
<Button
icon={data.unres_direction & 4 ? 'check-square-o' : 'square-o'}
content="South"
content="East"
selected={data.unres_direction & 4}
onClick={() => act('direc_set', {
unres_direction: '4',
File diff suppressed because one or more lines are too long