Update isFreeRebirth.js (#11505)

This commit is contained in:
mistergij
2019-11-16 11:58:37 -05:00
committed by Matteo Pagliazzi
parent 6a9ffae758
commit b40dee9e68

View File

@@ -10,5 +10,5 @@ export default function isFreeRebirth (user) {
daysFromLastFreeRebirth = 999;
}
return user.stats.lvl >= MAX_LEVEL && daysFromLastFreeRebirth > 45;
return user.stats.lvl >= MAX_LEVEL && daysFromLastFreeRebirth >= 45;
}