mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-19 07:37:25 +01:00
Revert "allow eggs to have a release date"
This reverts commit 6d13a257dd.
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
import allEggs from '../content/eggs';
|
||||
import allPotions from '../content/hatching-potions';
|
||||
import { drops as eggs } from '../content/eggs';
|
||||
import { drops as hatchingPotions } from '../content/hatching-potions';
|
||||
import randomVal from '../libs/randomVal';
|
||||
|
||||
export default function firstDrops (user) {
|
||||
const eggDrop = randomVal(allEggs.drops);
|
||||
const potionDrop = randomVal(allPotions.drops);
|
||||
const eggDrop = randomVal(eggs);
|
||||
const potionDrop = randomVal(hatchingPotions);
|
||||
|
||||
user.items.eggs = {
|
||||
...user.items.eggs,
|
||||
|
||||
Reference in New Issue
Block a user