Skip to content

Commit 66701e4

Browse files
committed
fix type check
1 parent 27121b9 commit 66701e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/lib/quest/quest.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class Quest {
4242

4343
return function (player: Player) {
4444
const step = Quest.getCurrentStepOf(player)
45-
if (!step || player.database.inv === 'spawn' || player.getGameMode() == GameMode.creative) return ''
45+
if (!step || player.database.inv === 'spawn' || player.getGameMode() == GameMode.Creative) return ''
4646

4747
step.playerQuest.updateListeners.add(showSidebar)
4848

0 commit comments

Comments
 (0)