Fixed grammar errors with box layer

This commit is contained in:
Chunkybanana 2022-12-05 04:26:02 +00:00
parent 43df6f567c
commit 3e5696d35e

View file

@ -112,7 +112,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
const ashBoxesBuyable = createBuyable(() => ({
display: {
title: "Carry more ash",
description: "Use boxes to carry even more ash, boosting their gain",
description: "Use boxes to carry even more ash, boosting its gain",
effectDisplay: jsx(() => (
<>{format(Decimal.div(ashBoxesBuyable.amount.value, 2).add(1))}x</>
))
@ -126,7 +126,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
const coalBoxesBuyable = createBuyable(() => ({
display: {
title: "Carry more coal",
description: "Use boxes to carry even more coal, boosting their gain",
description: "Use boxes to carry even more coal, boosting its gain",
effectDisplay: jsx(() => (
<>{format(Decimal.div(coalBoxesBuyable.amount.value, 2).add(1))}x</>
))