From 601c58950bf6f83c487a9dea3a8008e3f8af5175 Mon Sep 17 00:00:00 2001 From: Danish <72792730+1Danish-00@users.noreply.github.com> Date: Thu, 25 Feb 2021 01:31:01 +0530 Subject: [PATCH] Fixes --- assistant/customvars.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/assistant/customvars.py b/assistant/customvars.py index b7b141c..fafd05c 100644 --- a/assistant/customvars.py +++ b/assistant/customvars.py @@ -49,7 +49,7 @@ async def name(event): return await conv.send_message("Cancelled!!") else: await setit(event, var, themssg) - await conv.send_message("{} changed to {}".format(name, themssg)) + await conv.send_message("{} changed to {}\n\nDo {}restart".format(name, themssg, Var.HNDLR)) @callback("alvmed") @@ -125,7 +125,7 @@ async def name(event): return await conv.send_message("Cancelled!!") else: await setit(event, var, themssg) - await conv.send_message("{} changed to {}".format(name, themssg)) + await conv.send_message("{} changed to {}\n\nDo {}restart".format(name, themssg, Var.HNDLR)) @callback("alvmedd")