blob: c8efc525ed655c2d6a1b0188378ba7c040ab2140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- a/src/main.c
+++ b/src/main.c
@@ -1073,7 +1073,7 @@
/* The chat command, starts with <nick> */
else if(*temp == '<')
{
- if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED)) == 0)
+ if((user->type & (SCRIPT | UNKEYED | LINKED | NON_LOGGED | NON_LOGGED_ADM)) == 0)
chat(temp, user);
}
|