Fix bug in do_set
This commit is contained in:
parent
0c96dcc543
commit
a4df099b6a
1 changed files with 1 additions and 1 deletions
2
opsb.c
2
opsb.c
|
@ -481,7 +481,7 @@ int do_set(User *u, char **av, int ac) {
|
||||||
|
|
||||||
if (UserLevel(u) < 100) {
|
if (UserLevel(u) < 100) {
|
||||||
prefmsg(u->nick, s_opsb, "Access Denied");
|
prefmsg(u->nick, s_opsb, "Access Denied");
|
||||||
chanalert(s_opsb, "%s tried to set, but doesn't have access");
|
chanalert(s_opsb, "%s tried to set, but doesn't have access", u->nick);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Reference in a new issue