mirror of
https://github.com/thepaperpilot/Advent-Incremental.git
synced 2024-11-22 16:35:46 +00:00
Fixed reindeer hotkey order
This commit is contained in:
parent
d9c13ae6a0
commit
cce45916f2
1 changed files with 2 additions and 1 deletions
|
@ -266,7 +266,8 @@ const layer = createLayer(id, function (this: BaseLayer) {
|
||||||
boostDescription: "dye gain",
|
boostDescription: "dye gain",
|
||||||
boostAmount: 0.01
|
boostAmount: 0.01
|
||||||
});
|
});
|
||||||
const reindeer = { dasher, dancer, prancer, vixen, comet, cupid, donner, blitzen, rudolph };
|
// order is designed so hotkeys appear 1-9, even though they're displayed in numpad order in the layer itself
|
||||||
|
const reindeer = { donner, blitzen, rudolph, vixen, comet, cupid, dasher, dancer, prancer };
|
||||||
|
|
||||||
const sumTimesFed = computed(() =>
|
const sumTimesFed = computed(() =>
|
||||||
Object.values(reindeer)
|
Object.values(reindeer)
|
||||||
|
|
Loading…
Reference in a new issue