fix(lint): krangle or no dangle

This commit is contained in:
Kalista Payne
2026-03-20 17:49:21 -05:00
parent 3550754132
commit 03d5978163
+2 -2
View File
@@ -178,11 +178,11 @@ function _changeTaskValue (user, task, direction, times, cron) {
if (task.type === 'todo' || task.type === 'daily') {
user.party.quest.progress.up += Math.ceil(
nextDelta * _crit * (1 + statsComputed(user).str / 200)
nextDelta * _crit * (1 + statsComputed(user).str / 200),
);
} else if (task.type === 'habit') {
user.party.quest.progress.up += Math.ceil(
nextDelta * _crit * (0.5 + statsComputed(user).str / 400)
nextDelta * _crit * (0.5 + statsComputed(user).str / 400),
);
}