Updated ESLint to 7.25.0

This commit is contained in:
Daniël van Noord
2021-05-02 11:44:27 +02:00
parent eb71fd9bd2
commit 941ccfeb79
38 changed files with 148 additions and 148 deletions

View File

@@ -1,4 +1,4 @@
import { CacheSeaSpec } from '../VariablesAndData';
import { CacheSeaSpec } from '../VariablesAndData'; // eslint-disable-line no-unused-vars
/**
* This functions caches the reward of popping a reindeer
@@ -11,6 +11,6 @@ export default function CacheSeasonSpec() {
if (Game.hasBuff('Elder frenzy')) val *= 0.5;
if (Game.hasBuff('Frenzy')) val *= 0.75;
CacheSeaSpec = Math.max(25, val);
if (Game.Has('Ho ho ho-flavored frosting')) CacheSeaSpec *= 2; // eslint-disable-line no-unused-vars
if (Game.Has('Ho ho ho-flavored frosting')) CacheSeaSpec *= 2;
}
}