summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/onlogin.lua
diff options
context:
space:
mode:
authorfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-11 16:30:28 +0200
committerfaketruth <faketruth@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-11 16:30:28 +0200
commit0433de9955d500c6ab8b6819e4f64c06a7317f98 (patch)
tree9417d745cf3b65301718ba5584fff983140a3ae2 /MCServer/Plugins/Core/onlogin.lua
parentCan now send usertypes (cPlayer, cEntity, cCuboid) along with a plugin:Call() (diff)
downloadcuberite-0433de9955d500c6ab8b6819e4f64c06a7317f98.tar
cuberite-0433de9955d500c6ab8b6819e4f64c06a7317f98.tar.gz
cuberite-0433de9955d500c6ab8b6819e4f64c06a7317f98.tar.bz2
cuberite-0433de9955d500c6ab8b6819e4f64c06a7317f98.tar.lz
cuberite-0433de9955d500c6ab8b6819e4f64c06a7317f98.tar.xz
cuberite-0433de9955d500c6ab8b6819e4f64c06a7317f98.tar.zst
cuberite-0433de9955d500c6ab8b6819e4f64c06a7317f98.zip
Diffstat (limited to '')
-rw-r--r--MCServer/Plugins/Core/onlogin.lua16
1 files changed, 8 insertions, 8 deletions
diff --git a/MCServer/Plugins/Core/onlogin.lua b/MCServer/Plugins/Core/onlogin.lua
index a706f8024..07b8460ee 100644
--- a/MCServer/Plugins/Core/onlogin.lua
+++ b/MCServer/Plugins/Core/onlogin.lua
@@ -1,16 +1,16 @@
-function OnLogin( PacketData )
- if( PacketData.m_Username ~= "" ) then
- if( BannedPlayersIni:GetValueB("Banned", PacketData.m_Username, false) == true ) then
+function OnLogin(Client, ProtocolVersion, Username)
+ if( Username ~= "" ) then
+ if( BannedPlayersIni:GetValueB("Banned", Username, false) == true ) then
local Server = cRoot:Get():GetServer()
- Server:SendMessage( PacketData.m_Username .. " tried to join, but is banned!" )
- LOGINFO( PacketData.m_Username .. " tried to join, but is banned!")
+ 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
end
if( WhiteListIni:GetValueB("WhiteListSettings", "WhiteListOn", false ) == true ) then
- if( WhiteListIni:GetValueB("WhiteList", PacketData.m_Username, false ) == false ) then -- not on whitelist
+ if( WhiteListIni:GetValueB("WhiteList", Username, false ) == false ) then -- not on whitelist
local Server = cRoot:Get():GetServer()
- Server:SendMessage( PacketData.m_Username .. " tried to join, but is not on the whitelist." )
- LOGINFO( PacketData.m_Username .. " tried to join, but is not on the whitelist." )
+ 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