summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onlogin.lua
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-08-16 09:20:05 +0200
committermadmaxoft <github@xoft.cz>2013-08-16 09:20:34 +0200
commit98d574f05ea46763fc9e762b0719ab3ef2271230 (patch)
tree65d6a2f1bc97f800839fd65c7f459bb908e459c2 /MCServer/Plugins/Core/onlogin.lua
parentMerge pull request #96 from mc-server/buildsystest (diff)
downloadcuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar
cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.gz
cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.bz2
cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.lz
cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.xz
cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.tar.zst
cuberite-98d574f05ea46763fc9e762b0719ab3ef2271230.zip
Diffstat (limited to 'MCServer/Plugins/Core/onlogin.lua')
-rw-r--r--MCServer/Plugins/Core/onlogin.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/MCServer/Plugins/Core/onlogin.lua b/MCServer/Plugins/Core/onlogin.lua
deleted file mode 100644
index 6826305b2..000000000
--- a/MCServer/Plugins/Core/onlogin.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-function OnLogin(Client, ProtocolVersion, Username)
- if( Username ~= "" ) then
- if( BannedPlayersIni:GetValueB("Banned", Username, false) == true ) then
- LOGINFO( Username .. " tried to join, but is banned!")
- 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
- local Server = cRoot:Get():GetServer()
- Server:SendMessage( Username .. " tried to join, but is not on the whitelist." )
- LOGINFO( Username .. " tried to join, but is not on the whitelist." )
- return true -- Deny access to the server
- end
- end
- end
- return false
-end \ No newline at end of file