diff options
Diffstat (limited to 'MCServer/Plugins')
-rw-r--r-- | MCServer/Plugins/ChatLog/plugin.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MCServer/Plugins/ChatLog/plugin.lua b/MCServer/Plugins/ChatLog/plugin.lua index e18a8e642..0288d1aa9 100644 --- a/MCServer/Plugins/ChatLog/plugin.lua +++ b/MCServer/Plugins/ChatLog/plugin.lua @@ -9,7 +9,7 @@ function Initialize( Plugin ) return true
end
-function OnChat( Message, Player )
+function OnChat( Player, Message )
-- Lets get loggin'
LOGINFO("[" .. Player:GetName() .. "]: " .. Message);
|