aboutsummaryrefslogtreecommitdiff
path: root/ambient.py
diff options
context:
space:
mode:
Diffstat (limited to 'ambient.py')
-rw-r--r--ambient.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/ambient.py b/ambient.py
index 7dfce81..3bf28ca 100644
--- a/ambient.py
+++ b/ambient.py
@@ -8,7 +8,7 @@ import random
TOKEN = ""
PLAYLIST_URL = "https://www.youtube.com/playlist?list=PLuI-iSzcTZFUfVlc9OoZL5LbubQ_T_st9"
-volume = 0.16
+volume = 0.1
intents = discord.Intents.default()
intents.message_content = True
@@ -106,6 +106,9 @@ async def stop(ctx):
async def volume_cmd(ctx, vol: str):
"""set volume in % from 0-100"""
global volume
+ if vol == "?":
+ ctx.send(f"♥ to set the volume just type `:vol 50%` ~~!");
+
try:
if vol.endswith('%'):
vol = vol[:-1]