aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorczjstmax <jstmaxlol@disroot.org>2026-02-15 13:09:24 +0100
committerczjstmax <jstmaxlol@disroot.org>2026-02-15 13:09:24 +0100
commit383dd768482a19dbb03ee6e17bab6e75df4a8451 (patch)
tree6f011645ec2736141aa85bf6d364a67d955f67e9
parentbda91502417e5bab138d46d14ccd3eb500a68fb8 (diff)
added `:vol ?` for usage on `:vol`
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
-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]