Skip to content

Commit

Permalink
fix: don’t display advanced stats on prod deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
zardoy authored Oct 24, 2024
1 parent ebb5056 commit 5fa019e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/optionsStorage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const defaultOptions = {
autoJump: 'auto' as 'auto' | 'always' | 'never',
autoParkour: false,
vrSupport: true, // doesn't directly affect the VR mode, should only disable the button which is annoying to android users
renderDebug: (isDev ? 'basic' : 'advanced') as 'none' | 'advanced' | 'basic',
renderDebug: (isDev ? 'advanced' : 'basic') as 'none' | 'advanced' | 'basic',

// advanced bot options
autoRespawn: false,
Expand Down

0 comments on commit 5fa019e

Please # to comment.