From 29cebebc18e9570b699caef8ebb04f4d3934722d Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Thu, 2 Sep 2021 19:49:21 -0400 Subject: clean up --- src/commands/moulberry-bush/capes.ts | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/commands/moulberry-bush') diff --git a/src/commands/moulberry-bush/capes.ts b/src/commands/moulberry-bush/capes.ts index 447d604..14a972e 100644 --- a/src/commands/moulberry-bush/capes.ts +++ b/src/commands/moulberry-bush/capes.ts @@ -90,9 +90,7 @@ export default class CapesCommand extends BushCommand { const sortedCapes = capes1.sort((a, b) => { let aWeight: number | undefined = undefined, bWeight: number | undefined = undefined; - // eslint-disable-next-line prefer-const aWeight ??= a?.index; - // eslint-disable-next-line prefer-const bWeight ??= b?.index; if (aWeight !== undefined && bWeight !== undefined) { -- cgit