diff options
| author | czjstmax <jstmaxlol@disroot.org> | 2026-02-15 16:45:31 +0100 |
|---|---|---|
| committer | czjstmax <jstmaxlol@disroot.org> | 2026-02-15 16:45:31 +0100 |
| commit | 05eed2406c2b627dc2c367c5ddffcc521207f4b8 (patch) | |
| tree | d0bd8e9685c1412536572f02be7d40aadbe61d7a | |
| parent | af7925bec7ef147f64b08f561a04325cb2bd7a0a (diff) | |
fixes now it's good (uwu)
Signed-off-by: czjstmax <jstmaxlol@disroot.org>
| -rw-r--r-- | ambient.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -107,8 +107,10 @@ async def volume_cmd(ctx, vol: str): """set volume in % from 0-100""" global volume if vol == "?": - #await ctx.send(f"♥ to set the volume just type `:vol 50%` ~~!") - await ctx.send(f"♥ the current volume is {round(volume*100)}% ~~!") + await ctx.send(f"♥ the current volume is {round(volume*100)}% ;>") + return 0 + elif vol == "h" or vol == "help": + await ctx.send(f"♥ to set the volume just type `:vol 50%` ~!") return 1 try: |