Skip to content
Snippets Groups Projects
Commit efb5c18a authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix ReferenceError: theuser is not defined

Looks like a typo, in Scan_For_Banned_Clients()
parent 8f7a2c32
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -207,7 +207,7 @@ function Scan_For_Banned_Clients() { ...@@ -207,7 +207,7 @@ function Scan_For_Banned_Clients() {
if ( isklined(user.uprefix + "@" + user.hostname) if ( isklined(user.uprefix + "@" + user.hostname)
|| IP_Banned(user.ip) || IP_Banned(user.ip)
) { ) {
theuser.quit("User has been banned"); this.quit("User has been banned");
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment