diff options
Diffstat (limited to 'MCServer/Plugins/Core/onlogin.lua')
-rw-r--r-- | MCServer/Plugins/Core/onlogin.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/Plugins/Core/onlogin.lua b/MCServer/Plugins/Core/onlogin.lua index 4b2f24f17..cc79bb0ae 100644 --- a/MCServer/Plugins/Core/onlogin.lua +++ b/MCServer/Plugins/Core/onlogin.lua @@ -4,7 +4,7 @@ function OnLogin(Client, ProtocolVersion, Username) local Server = cRoot:Get():GetServer() Server:SendMessage( Username .. " tried to join, but is banned!" ) LOGINFO( Username .. " tried to join, but is banned!") - return true -- Player is banned, return true to deny access + return true -- Player is banned, return true to deny access end if( WhiteListIni:GetValueB("WhiteListSettings", "WhiteListOn", false ) == true ) then if( WhiteListIni:GetValueB("WhiteList", Username, false ) == false ) then -- not on whitelist |