Skip to content

Commit

Permalink
linting #2504
Browse files Browse the repository at this point in the history
  • Loading branch information
DreadKnight committed Oct 8, 2023
1 parent 11a790e commit 6a81cb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui/interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -2269,7 +2269,7 @@ export class UI {

const onCreatureMouseEnter = ifGameNotFrozen((placeholderCreature) => {
const creatures = ui.game.creatures.filter((c) => c instanceof Creature);
const creature = creatures.filter(c => c.id === placeholderCreature.id)[0];
const creature = creatures.filter((c) => c.id === placeholderCreature.id)[0];
const otherCreatures = creatures.filter((c) => c.id !== placeholderCreature.id);

otherCreatures.forEach((c) => {
Expand Down

1 comment on commit 6a81cb8

@vercel
Copy link

@vercel vercel bot commented on 6a81cb8 Oct 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.