Remove sandstorm edit, fix suit storage

This commit is contained in:
Jerry Wester
2022-12-11 20:45:46 -07:00
parent 7bbed1410b
commit dae5190941
3 changed files with 17 additions and 15 deletions
@@ -14,6 +14,7 @@ export const SuitStorageUnit = (props, context) => {
suit,
helmet,
mask,
mod,
storage,
} = data;
return (
@@ -89,6 +90,15 @@ export const SuitStorageUnit = (props, context) => {
item: 'mask',
})} />
</LabeledList.Item>
<LabeledList.Item label="MOD">
<Button
icon={mod ? 'square' : 'square-o'}
content={mod || 'Empty'}
disabled={!mod}
onClick={() => act('dispense', {
item: 'mod',
})} />
</LabeledList.Item>
<LabeledList.Item label="Storage">
<Button
icon={storage ? 'square' : 'square-o'}