mirror of
https://github.com/sudoxnym/habitica.git
synced 2026-05-17 03:08:51 +00:00
fix(event): award old Robes to new users, not 2016
This commit is contained in:
parent
5512be01cd
commit
b7ee6f7da0
2 changed files with 2 additions and 3 deletions
|
|
@ -13,7 +13,7 @@ export const CLASSES = [
|
|||
|
||||
export const EVENTS = {
|
||||
winter: { start: '2013-12-31', end: '2014-02-01' },
|
||||
birthday: { start: '2013-01-30', end: '2014-02-01' },
|
||||
birthday: { start: '2016-01-29', end: '2016-02-02' },
|
||||
spring: { start: '2014-03-21', end: '2014-05-01' },
|
||||
summer: { start: '2014-06-20', end: '2014-08-01' },
|
||||
fall: { start: '2014-09-21', end: '2014-11-01' },
|
||||
|
|
@ -23,7 +23,6 @@ export const EVENTS = {
|
|||
fall2015: { start: '2015-09-21', end: '2015-11-01' },
|
||||
gaymerx: { start: '2015-12-01', end: '2015-12-14' },
|
||||
winter2016: { start: '2015-12-18', end: '2016-02-02' },
|
||||
birthday2016: { start: '2016-01-29', end: '2016-02-02' },
|
||||
};
|
||||
|
||||
export const GEAR_TYPES = [
|
||||
|
|
|
|||
|
|
@ -63,6 +63,7 @@ let armor = {
|
|||
},
|
||||
},
|
||||
birthday: {
|
||||
event: EVENTS.birthday,
|
||||
text: t('armorSpecialBirthdayText'),
|
||||
notes: t('armorSpecialBirthdayNotes'), value: 0,
|
||||
},
|
||||
|
|
@ -359,7 +360,6 @@ let armor = {
|
|||
con: 15,
|
||||
},
|
||||
birthday2016: {
|
||||
event: EVENTS.birthday2016,
|
||||
text: t('armorSpecialBirthday2016Text'),
|
||||
notes: t('armorSpecialBirthday2016Notes'),
|
||||
value: 0,
|
||||
|
|
|
|||
Loading…
Reference in a new issue