mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-03-14 01:51:40 +00:00
Fixed grammar errors with box layer
This commit is contained in:
parent
43df6f567c
commit
3e5696d35e
1 changed files with 2 additions and 2 deletions
|
@ -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</>
|
||||
))
|
||||
|
|
Loading…
Add table
Reference in a new issue