Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ircd/m_jupe.c
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,8 @@ int mo_jupe(struct Client* cptr, struct Client* sptr, int parc, char* parv[])
return send_reply(sptr, ERR_DISABLED, "JUPE");

if (parc == 4) {
if (!HasPriv(sptr, PRIV_LOCAL_JUPE))
return send_reply(sptr, ERR_NOPRIVILEGES);
expire_off = atoi(parv[2]);
reason = parv[3];
flags |= JUPE_LOCAL;
Expand Down
Loading