Skip to content

Commit a00726b

Browse files
committed
Both files with lint errors now do not have lint errors.
1 parent d7b9938 commit a00726b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/conventions/h-group/clue-interpretation/connecting-cards.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function find_known_connecting(game, giver, identity, ignoreOrders = [],
4343
// Globally known
4444
for (let i = 0; i < state.numPlayers; i++) {
4545
const playerIndex = (giver + i) % state.numPlayers;
46-
46+
4747
const globally_known = state.hands[playerIndex].find(order => {
4848
const ineligible = ignoreOrders.includes(order) ||
4949
!common.thoughts[order].touched ||
@@ -99,7 +99,7 @@ export function find_known_connecting(game, giver, identity, ignoreOrders = [],
9999
// Visible and already going to be played (excluding giver)
100100
for (let i = 1; i < state.numPlayers; i++) {
101101
const playerIndex = (giver + i) % state.numPlayers;
102-
102+
103103
if (options.knownOnly?.includes(playerIndex))
104104
continue;
105105

test/h-group/level-14.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -201,4 +201,4 @@ describe('trash order chop move', () => {
201201
const action = await game.take_action();
202202
ExAsserts.objHasProperties(action, { type: ACTION.DISCARD, target: game.state.hands[PLAYER.BOB][3] }, `Expected (Discard slot 4) but got ${logPerformAction(action)}`);
203203
});
204-
});
204+
});

0 commit comments

Comments
 (0)