CORPORATION: typo fixes in modals to sell materials and products (#197)

This commit is contained in:
quacksouls 2022-11-07 13:36:38 +11:00 committed by GitHub
parent c17af3ad35
commit 8367b68f46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 7 deletions

@ -54,11 +54,11 @@ export function SellMaterialModal(props: IProps): React.ReactElement {
<Modal open={props.open} onClose={props.onClose}>
<Typography>
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.
<br />
<br />
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.
<br />
<br />
Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the material.

@ -66,23 +66,23 @@ export function SellProductModal(props: IProps): React.ReactElement {
<Modal open={props.open} onClose={props.onClose}>
<Typography>
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.
<br />
<br />
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.
<br />
<br />
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.
<br />
<br />
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.
<br />
<br />
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.
</Typography>
<br />