diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2026-02-15 13:09:24 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2026-02-15 13:09:24 +0100 |
| commit | 383dd768482a19dbb03ee6e17bab6e75df4a8451 (patch) | |
| tree | 6f011645ec2736141aa85bf6d364a67d955f67e9 /ambient.py | |
| parent | bda91502417e5bab138d46d14ccd3eb500a68fb8 (diff) | |
added `:vol ?` for usage on `:vol`
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
Diffstat (limited to 'ambient.py')
| -rw-r--r-- | ambient.py | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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] |