summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/me.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--MCServer/Plugins/Core/me.lua20
1 files changed, 0 insertions, 20 deletions
diff --git a/MCServer/Plugins/Core/me.lua b/MCServer/Plugins/Core/me.lua
deleted file mode 100644
index 73fb60f73..000000000
--- a/MCServer/Plugins/Core/me.lua
+++ /dev/null
@@ -1,20 +0,0 @@
-function HandleMeCommand( Split, Player )
-
- table.remove( Split, 1 )
- local Message = ""
-
- for i, Text in ipairs( Split ) do
- Message = Message .. " " .. Text
- end
-
- if Split[1] == nil then
- SendMessage( Player, "Usage: /me <action>" )
- return true
- end
-
- if Split[1] ~= nil then
- cRoot:Get():GetServer():BroadcastChat( Player:GetName() .. "" .. Message )
- return true
- end
-
-end