fix naming

This commit is contained in:
Phillip Thelen 2024-06-28 17:16:45 +02:00
parent 28193f86fb
commit 5323849f90
2 changed files with 6 additions and 2 deletions

View file

@ -962,6 +962,8 @@ const body = {
},
};
fillSpecialGear(body, 'body');
const eyewear = {
wondercon_red: wonderconGear.eyewearSpecialWonderconRed, // eslint-disable-line camelcase
wondercon_black: wonderconGear.eyewearSpecialWonderconBlack, // eslint-disable-line camelcase
@ -971,6 +973,7 @@ const eyewear = {
text: t('eyewearSpecialSummerRogueText'),
notes: t('eyewearSpecialSummerRogueNotes'),
value: 20,
season: 'summer',
},
summerWarrior: {
specialClass: 'warrior',
@ -978,6 +981,7 @@ const eyewear = {
text: t('eyewearSpecialSummerWarriorText'),
notes: t('eyewearSpecialSummerWarriorNotes'),
value: 20,
season: 'summer',
},
blackTopFrame: {
gearSet: 'glasses',

View file

@ -213,7 +213,7 @@ Object.defineProperty(api, 'hatchingPotions', {
enumerable: true,
});
Object.defineProperty(api, 'dropPets', {
Object.defineProperty(api, 'pets', {
get () { return stable.dropPets; },
enumerable: true,
});
@ -238,7 +238,7 @@ Object.defineProperty(api, 'petInfo', {
enumerable: true,
});
Object.defineProperty(api, 'dropMounts', {
Object.defineProperty(api, 'mounts', {
get () { return stable.dropMounts; },
enumerable: true,
});