Skip to content

Commit

Permalink
Update examples and fix some bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
srhinos committed Jan 15, 2018
1 parent 0659da8 commit 88d8bd0
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
6 changes: 5 additions & 1 deletion config/example_options.ini
Original file line number Diff line number Diff line change
Expand Up @@ -119,4 +119,8 @@ WriteCurrentSong = no

# Allows the person who queued a song to their OWN songs instantly, similar to the
# functionality that owners have where they can skip every song instantly.
AllowAuthorSkip = yes
AllowAuthorSkip = yes

# Enables experimental equalization code. This will cause all songs to sound similar in
# volume at the cost of higher processing consumption when the song is initially being played.
UseExperimentalEqualization = yes
10 changes: 10 additions & 0 deletions config/example_permissions.ini
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@
; InstaSkip = no
; Allows the user to skip a song without having to vote, like the owner.
;
; Remove = no
; Allows the user to remove any song from the queue at any point
;
; SkipWhenAbsent = yes
; Tells the bot to automatically skip songs queued by people in this group who have left the voice channel after queueing.
; Will only skip once the song is about to play
;
; BypassKaraokeMode = no
; Allows the user to queue songs despite Karaoke mode being activated
;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


Expand Down
2 changes: 1 addition & 1 deletion musicbot/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class ConfigDefaults:
status_message = None
write_current_song = False
allow_author_skip = True
use_experimental_equalizationuse_experimental_equalization = False
use_experimental_equalization = False

options_file = 'config/options.ini'
blacklist_file = 'config/blacklist.txt'
Expand Down

0 comments on commit 88d8bd0

Please sign in to comment.