diff --git a/src/Corporation/ui/modals/SellMaterialModal.tsx b/src/Corporation/ui/modals/SellMaterialModal.tsx index 023c1f8c6..3726c1bce 100644 --- a/src/Corporation/ui/modals/SellMaterialModal.tsx +++ b/src/Corporation/ui/modals/SellMaterialModal.tsx @@ -54,11 +54,11 @@ export function SellMaterialModal(props: IProps): React.ReactElement { Enter the maximum amount of {props.mat.name} you would like to sell per second, as well as the price at which - you would like to sell at. + you would like to sell.

- If the sell amount is set to 0, then the material will not be sold. If the sell price if set to 0, then the - material will be discarded + If the sell amount is set to 0, then the material will not be sold. If the sell price is set to 0, then the + material will be discarded.

Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the material. diff --git a/src/Corporation/ui/modals/SellProductModal.tsx b/src/Corporation/ui/modals/SellProductModal.tsx index d01009045..2c95e7003 100644 --- a/src/Corporation/ui/modals/SellProductModal.tsx +++ b/src/Corporation/ui/modals/SellProductModal.tsx @@ -66,23 +66,23 @@ export function SellProductModal(props: IProps): React.ReactElement { Enter the maximum amount of {props.product.name} you would like to sell per second, as well as the price at - which you would like to sell it at. + which you would like to sell.

If the sell amount is set to 0, then the product will not be sold. If the sell price is set to 0, then the product will be discarded.

- Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the material. + Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the product.

When setting the sell amount, you can use the 'PROD' variable to designate a dynamically changing amount that depends on your production. For example, if you set the sell amount to 'PROD-1' then you will always sell 1 less - of the material than you produce. + of the product than you produce.

When setting the sell price, you can use the 'MP' variable to set a dynamically changing price that depends on - the Product's estimated market price. For example, if you set it to 'MP*5' then it will always be sold at five + the product's estimated market price. For example, if you set it to 'MP*5' then it will always be sold at five times the estimated market price.