summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/kick.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/kick.lua')
-rw-r--r--MCServer/Plugins/Core/kick.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/MCServer/Plugins/Core/kick.lua b/MCServer/Plugins/Core/kick.lua
deleted file mode 100644
index 1bc2ab128..000000000
--- a/MCServer/Plugins/Core/kick.lua
+++ /dev/null
@@ -1,19 +0,0 @@
-function HandleKickCommand( Split, Player )
-
- if( #Split < 2 ) then
- SendMessage( Player, "Usage: /kick [Player] <Reason>" )
- return true
- end
-
- local Reason = "You have been kicked"
- if ( #Split > 2 ) then
- Reason = table.concat( Split, " ", 3 )
- end
-
- if( KickPlayer( Split[2], Reason ) == false ) then
- SendMessageFailure( Player, "Could not find player " .. Split[2] )
- end
-
- return true
-
-end