mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-12-19 04:35:46 +01:00
CORPORATION: typo fixes in modals to sell materials and products (#197)
This commit is contained in:
parent
c17af3ad35
commit
8367b68f46
@ -54,11 +54,11 @@ export function SellMaterialModal(props: IProps): React.ReactElement {
|
|||||||
<Modal open={props.open} onClose={props.onClose}>
|
<Modal open={props.open} onClose={props.onClose}>
|
||||||
<Typography>
|
<Typography>
|
||||||
Enter the maximum amount of {props.mat.name} you would like to sell per second, as well as the price at which
|
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 />
|
||||||
<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
|
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
|
material will be discarded.
|
||||||
<br />
|
<br />
|
||||||
<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 material.
|
||||||
|
@ -66,23 +66,23 @@ export function SellProductModal(props: IProps): React.ReactElement {
|
|||||||
<Modal open={props.open} onClose={props.onClose}>
|
<Modal open={props.open} onClose={props.onClose}>
|
||||||
<Typography>
|
<Typography>
|
||||||
Enter the maximum amount of {props.product.name} you would like to sell per second, as well as the price at
|
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 />
|
||||||
<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
|
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.
|
product will be discarded.
|
||||||
<br />
|
<br />
|
||||||
<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 />
|
||||||
<br />
|
<br />
|
||||||
When setting the sell amount, you can use the 'PROD' variable to designate a dynamically changing amount that
|
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
|
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 />
|
||||||
<br />
|
<br />
|
||||||
When setting the sell price, you can use the 'MP' variable to set a dynamically changing price that depends on
|
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.
|
times the estimated market price.
|
||||||
</Typography>
|
</Typography>
|
||||||
<br />
|
<br />
|
||||||
|
Loading…
Reference in New Issue
Block a user