mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2025-02-16 09:31:43 +00:00
Change efficiency labels
This commit is contained in:
parent
6a9e3cc1ac
commit
34b96f6862
1 changed files with 6 additions and 1 deletions
|
@ -979,7 +979,12 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
|||
<Spacer />
|
||||
{
|
||||
Decimal.lt(coalEffectiveness.value, 1) ?
|
||||
"Your drills are working at " + format(Decimal.mul(coalEffectiveness.value, 100)) + "% effectiveness due to lack of coal."
|
||||
"Coal efficiency: " + format(Decimal.mul(coalEffectiveness.value, 100)) + "%"
|
||||
: null
|
||||
}
|
||||
{
|
||||
Decimal.lt(oilEffectiveness.value, 1) ?
|
||||
"Oil efficiency: " + format(Decimal.mul(oilEffectiveness.value, 100)) + "%"
|
||||
: null
|
||||
}
|
||||
<MainDisplay
|
||||
|
|
Loading…
Add table
Reference in a new issue