From 9c0811afe837a62b07c6ec2a63f212b201e59786 Mon Sep 17 00:00:00 2001 From: Ske Date: Mon, 16 Jul 2018 13:37:06 +0200 Subject: [PATCH] Whoops --- bot/pluralkit/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot/pluralkit/commands.py b/bot/pluralkit/commands.py index 7bef7f49..6fd2a9ee 100644 --- a/bot/pluralkit/commands.py +++ b/bot/pluralkit/commands.py @@ -110,7 +110,7 @@ async def system_set(conn, message, args): db_prop = db_properties[prop] await db.update_system_field(conn, system_id=system["id"], field=db_prop, value=value) - response = "{} system {}.".format("Updated" if value else "Cleared", prop) + response = make_default_embed("{} system {}.".format("Updated" if value else "Cleared", prop)) if prop == "avatar" and value: response.set_image(url=value) return True, response