A little airlock electronics tgui Fix, courtesy of YakumoChen

This commit is contained in:
Ghommie
2020-05-10 14:38:50 +02:00
parent 602154abe8
commit 40eeb1d9b8
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