summaryrefslogtreecommitdiffstats
path: root/Plugins/Core/kick.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/Core/kick.lua')
-rw-r--r--Plugins/Core/kick.lua27
1 files changed, 0 insertions, 27 deletions
diff --git a/Plugins/Core/kick.lua b/Plugins/Core/kick.lua
deleted file mode 100644
index ff4f8a705..000000000
--- a/Plugins/Core/kick.lua
+++ /dev/null
@@ -1,27 +0,0 @@
-function HandleKickCommand( Split, Player )
- if( #Split < 2 ) then
- Player:SendMessage( cChatColor.Green .. "Usage: /kick [Player] <Reason>" )
- return true
- end
-
- local World = Player:GetWorld()
- local OtherPlayer = World:GetPlayer( Split[2] )
- if( OtherPlayer == nil ) then
- Player:SendMessage( cChatColor.Green .. "Could not find player " .. Split[2] )
- return true
- end
-
- local Reason = "You have been kicked"
- if( #Split > 2 ) then
- Reason = table.concat(Split, " ", 3)
- end
-
- local Server = cRoot:Get():GetServer()
- LOGINFO( Player:GetName() .. " is kicking " .. OtherPlayer:GetName() .. " ( "..Reason..") " )
- Server:SendMessage( "Kicking " .. OtherPlayer:GetName() )
-
- local ClientHandle = OtherPlayer:GetClientHandle()
- ClientHandle:Kick( Reason )
-
- return true
-end \ No newline at end of file