-
Notifications
You must be signed in to change notification settings - Fork 422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Turn the multiplier on/off added. #295
Changes from 11 commits
73f4b48
e4f426b
dce7664
83403a3
b5b5498
4e0521e
fe9da54
d458f6f
17877f0
1523092
6b193bb
ccaf0ad
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,14 @@ | |
{ | ||
'label': 'Toggle' | ||
'command': 'activate-power-mode:toggle' | ||
}, | ||
{ | ||
'label': 'Select Effects' | ||
'command': 'activate-power-mode:select-flow' | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should be 2, one with the select-effect and another with the select-flow. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I didn't realise it, I'll fix it now. |
||
{ | ||
'label': 'Reset Max Combo' | ||
'command': 'activate-power-mode:reset-max-combo' | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also add the disable and enable commands as well. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All commands added on ccaf0ad |
||
] | ||
] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to check with this config on the
checkLevel
function as well to avoid triggering the multiplier exclamations (those 2x, 3x).There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed on multiplier exclamation only if multiplier is enabled.