From fe6ec4b8937aa0f18fa86e961223a8af47c6592a Mon Sep 17 00:00:00 2001 From: Frisk Date: Sun, 4 Nov 2018 16:16:56 +0100 Subject: [PATCH] Fixed the wrong order in the message --- rcgcdw.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rcgcdw.py b/rcgcdw.py index 202d618..97c3d5a 100644 --- a/rcgcdw.py +++ b/rcgcdw.py @@ -583,8 +583,8 @@ def first_pass( webhook_formatter(combination, STATIC_VARS, user=change["user"], title=change["title"], desc=parsedcomment, target=change["logparams"]["target_title"]) elif combination == "protect/move_prot": - webhook_formatter(combination, STATIC_VARS, user=change["user"], title=change["title"], desc=parsedcomment, - target=change["logparams"]["oldtitle_title"]) + webhook_formatter(combination, STATIC_VARS, user=change["user"], title=change["logparams"]["oldtitle_title"], desc=parsedcomment, + target=change["title"]) elif combination == "block/block": webhook_formatter(combination, STATIC_VARS, user=change["user"], blocked_user=change["title"], desc=parsedcomment, duration=change["logparams"]["duration"])