Skip to content

Commit

Permalink
uncomment check.
Browse files Browse the repository at this point in the history
  • Loading branch information
phulin committed Nov 30, 2024
1 parent b015f3c commit 3abdf6f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/sections/misc/Pulls.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { List } from "@chakra-ui/react";
import {
canInteract,
fullnessLimit,
inHardcore,
isUnrestricted,
Item,
myAscensions,
Expand All @@ -22,7 +24,7 @@ import { spinStatus } from "../../questInfo/pyramid";
import { neededNinjaItems } from "../../questInfo/trapper";
import { bitCount } from "../../util/calc";
import { mallLink, storageLink } from "../../util/links";
import { questFinished, questPastStep, Step } from "../../util/quest";
import { inRun, questFinished, questPastStep, Step } from "../../util/quest";
import { commaAnd, plural, truthy } from "../../util/text";

interface Pull {
Expand All @@ -33,9 +35,9 @@ interface Pull {
}

const Pulls: FC = () => {
// if (!inRun() || inHardcore() || canInteract()) {
// return null;
// }
if (!inRun() || inHardcore() || canInteract()) {
return null;
}

const path = myPath();

Expand Down

0 comments on commit 3abdf6f

Please sign in to comment.