mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 00:21:34 +00:00
fixes some typos
This commit is contained in:
parent
891f01813d
commit
cedb63f4d9
1 changed files with 3 additions and 3 deletions
|
@ -47,7 +47,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
const resetPacking = createClickable(() => ({
|
const resetPacking = createClickable(() => ({
|
||||||
display: {
|
display: {
|
||||||
description:
|
description:
|
||||||
"Oh no! You've run out of space! You'll need to take all the presentts out and repack them"
|
"Oh no! You've run out of space! You'll need to take all the presents out and repack them..."
|
||||||
},
|
},
|
||||||
visibility: () =>
|
visibility: () =>
|
||||||
showIf(Decimal.lt(packedPresents.value, 8e9) && Decimal.lte(remainingSize.value, 0)),
|
showIf(Decimal.lt(packedPresents.value, 8e9) && Decimal.lte(remainingSize.value, 0)),
|
||||||
|
@ -279,7 +279,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
packingElf: createUpgrade(() => ({
|
packingElf: createUpgrade(() => ({
|
||||||
display: {
|
display: {
|
||||||
title: "An Elf's Elf",
|
title: "An Elf's Elf",
|
||||||
description: "Hire an Elf to help you hire more Elves"
|
description: "Hire an Elf to help you hire more Elves."
|
||||||
},
|
},
|
||||||
cost: 1000,
|
cost: 1000,
|
||||||
resource: totalPresentsResource,
|
resource: totalPresentsResource,
|
||||||
|
@ -292,7 +292,7 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
display: {
|
display: {
|
||||||
title: "Heavy Machinery",
|
title: "Heavy Machinery",
|
||||||
description:
|
description:
|
||||||
"Those construction vehicles you have from building the workshop should be useful for loading presents too"
|
"Those construction vehicles you have from building the workshop should be useful for loading presents too."
|
||||||
},
|
},
|
||||||
cost: 100000,
|
cost: 100000,
|
||||||
resource: totalPresentsResource,
|
resource: totalPresentsResource,
|
||||||
|
|
Loading…
Reference in a new issue