Mods
This commit is contained in:
parent
8ab18265fa
commit
aa3b4f3c16
2
main.py
2
main.py
|
@ -148,7 +148,7 @@ async def random_bird(ws, room_id):
|
||||||
async with aiofiles.open(birdfile, mode="r", encoding="utf-8") as file:
|
async with aiofiles.open(birdfile, mode="r", encoding="utf-8") as file:
|
||||||
birds = await file.readlines()
|
birds = await file.readlines()
|
||||||
bird = random.choice(birds).strip()
|
bird = random.choice(birds).strip()
|
||||||
await send_message(ws, f".i {bird} bird", room_id)
|
await send_message(ws, f".i \"{bird}\" bird", room_id)
|
||||||
|
|
||||||
async def gif_describe(who, room_id):
|
async def gif_describe(who, room_id):
|
||||||
input_path = get_path("describe.jpg")
|
input_path = get_path("describe.jpg")
|
||||||
|
|
Loading…
Reference in New Issue