From 5c167e418163da9eef2fac6433b554e660c0de24 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Mon, 2 Mar 2020 19:17:42 -0500 Subject: Prevent entering commands in if restricted Because the ID always exists, it's possible to create a window for it even while restricted with "/window " and try to enter commands there. --- command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'command.c') diff --git a/command.c b/command.c index c2ebab7..701486b 100644 --- a/command.c +++ b/command.c @@ -392,7 +392,7 @@ const char *commandIsAction(uint id, const char *input) { } void command(uint id, char *input) { - if (id == Debug && input[0] != '/') { + if (id == Debug && input[0] != '/' && !self.restricted) { commandQuote(id, input); return; } else if (commandIsPrivmsg(id, input)) { -- cgit 1.4.1