mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-16 06:07:21 +01:00
move quest constants to their own folder
This commit is contained in:
@@ -33,11 +33,11 @@ export { default as ANIMAL_COLOR_ACHIEVEMENTS } from './animalColorAchievements'
|
||||
export { default as ANIMAL_SET_ACHIEVEMENTS } from './animalSetAchievements';
|
||||
export { default as QUEST_SERIES_ACHIEVEMENTS } from './questSeriesAchievements';
|
||||
export { default as ITEM_LIST } from './itemList';
|
||||
export { default as QUEST_SERIES } from './questSeries';
|
||||
export { default as QUEST_MASTERCLASSER } from './questMasterclasser';
|
||||
export { default as QUEST_GENERIC } from './questGeneric';
|
||||
export { default as QUEST_SEASONAL } from './questSeasonal';
|
||||
export { default as QUEST_PETS } from './questPets';
|
||||
export { default as QUEST_POTIONS } from './questPotions';
|
||||
export { default as QUEST_TIME_TRAVEL } from './questTimeTravel';
|
||||
export { default as QUEST_WORLD } from './questWorld';
|
||||
export { default as QUEST_SERIES } from '../quests/series';
|
||||
export { default as QUEST_MASTERCLASSER } from '../quests/masterclasser';
|
||||
export { default as QUEST_GENERIC } from '../quests/generic';
|
||||
export { default as QUEST_SEASONAL } from '../quests/seasonal';
|
||||
export { default as QUEST_PETS } from '../quests/pets';
|
||||
export { default as QUEST_POTIONS } from '../quests/potions';
|
||||
export { default as QUEST_TIME_TRAVEL } from '../quests/timeTravel';
|
||||
export { default as QUEST_WORLD } from '../quests/world';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import find from 'lodash/find';
|
||||
import moment from 'moment';
|
||||
import { EVENTS } from './events';
|
||||
import { EVENTS } from '../constants/events';
|
||||
import t from '../translation';
|
||||
|
||||
const CURRENT_EVENT = find(
|
||||
Reference in New Issue
Block a user