summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/Core/me.lua
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer/Plugins/Core/me.lua')
-rw-r--r--MCServer/Plugins/Core/me.lua21
1 files changed, 13 insertions, 8 deletions
diff --git a/MCServer/Plugins/Core/me.lua b/MCServer/Plugins/Core/me.lua
index 783c15556..73fb60f73 100644
--- a/MCServer/Plugins/Core/me.lua
+++ b/MCServer/Plugins/Core/me.lua
@@ -1,15 +1,20 @@
function HandleMeCommand( Split, Player )
- table.remove(Split, 1);
- local Message = "";
- for i, Text in ipairs(Split) do
- Message = Message .. " " .. Text;
+
+ table.remove( Split, 1 )
+ local Message = ""
+
+ for i, Text in ipairs( Split ) do
+ Message = Message .. " " .. Text
end
- if (Split[1] == nil) then
- Player:SendMessage(cChatColor.Yellow .. "[INFO] " .. cChatColor.White .. "Usage: /me <action>")
+
+ 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);
+
+ if Split[1] ~= nil then
+ cRoot:Get():GetServer():BroadcastChat( Player:GetName() .. "" .. Message )
return true
end
+
end