mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-19 20:34:44 +00:00
fix(event): de-Festivalize class change modal
This commit is contained in:
parent
dca00bf4b7
commit
256a3abc26
1 changed files with 15 additions and 15 deletions
|
|
@ -164,30 +164,30 @@ export default {
|
|||
classGear (heroClass) {
|
||||
if (heroClass === 'rogue') {
|
||||
return {
|
||||
armor: 'armor_special_fall2018Rogue',
|
||||
head: 'head_special_fall2018Rogue',
|
||||
shield: 'shield_special_fall2018Rogue',
|
||||
weapon: 'weapon_special_fall2018Rogue',
|
||||
armor: 'armor_rogue_5',
|
||||
head: 'head_rogue_5',
|
||||
shield: 'shield_rogue_6',
|
||||
weapon: 'weapon_rogue_6',
|
||||
};
|
||||
} else if (heroClass === 'wizard') {
|
||||
return {
|
||||
armor: 'armor_special_fall2018Mage',
|
||||
head: 'head_special_fall2018Mage',
|
||||
weapon: 'weapon_special_fall2018Mage',
|
||||
armor: 'armor_wizard_5',
|
||||
head: 'head_wizard_5',
|
||||
weapon: 'weapon_wizard_6',
|
||||
};
|
||||
} else if (heroClass === 'healer') {
|
||||
return {
|
||||
armor: 'armor_special_fall2018Healer',
|
||||
head: 'head_special_fall2018Healer',
|
||||
shield: 'shield_special_fall2018Healer',
|
||||
weapon: 'weapon_special_fall2018Healer',
|
||||
armor: 'armor_healer_5',
|
||||
head: 'head_healer_5',
|
||||
shield: 'shield_healer_5',
|
||||
weapon: 'weapon_healer_6',
|
||||
};
|
||||
} else {
|
||||
return {
|
||||
armor: 'armor_special_fall2018Warrior',
|
||||
head: 'head_special_fall2018Warrior',
|
||||
shield: 'shield_special_fall2018Warrior',
|
||||
weapon: 'weapon_special_fall2018Warrior',
|
||||
armor: 'armor_warrior_5',
|
||||
head: 'head_warrior_5',
|
||||
shield: 'shield_warrior_5',
|
||||
weapon: 'weapon_warrior_6',
|
||||
};
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue