From c345c7bb9ae244fe9818c58c8a9a606a141d9c1b Mon Sep 17 00:00:00 2001 From: swee Date: Wed, 29 Jan 2025 20:20:08 -0800 Subject: [PATCH] Update modules/pawserv.py --- modules/pawserv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/pawserv.py b/modules/pawserv.py index 7dd952c..e10088a 100644 --- a/modules/pawserv.py +++ b/modules/pawserv.py @@ -40,7 +40,7 @@ class IRCatModule: if command == "NICKSERV" or (command == "PRIVMSG" and args[0].lower() == "nickserv") or command == "PASS": if command == "PASS": command = "NICKSERV" - args = ["IDENTIFY", args[1]] + args = ["IDENTIFY", args[0]] if command == "PRIVMSG": args = args[1:] args[0] = args[0][1:] if args[0][0] == ":" else args[0]