summaryrefslogtreecommitdiffstats
path: root/Plugins/ChatLog/plugin.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/ChatLog/plugin.lua')
-rw-r--r--Plugins/ChatLog/plugin.lua17
1 files changed, 0 insertions, 17 deletions
diff --git a/Plugins/ChatLog/plugin.lua b/Plugins/ChatLog/plugin.lua
deleted file mode 100644
index e18a8e642..000000000
--- a/Plugins/ChatLog/plugin.lua
+++ /dev/null
@@ -1,17 +0,0 @@
-function Initialize( Plugin )
- Plugin:SetName( "ChatLog" )
- Plugin:SetVersion( 2 )
-
- PluginManager = cRoot:Get():GetPluginManager()
- PluginManager:AddHook( Plugin, cPluginManager.E_PLUGIN_CHAT )
-
- LOG( "Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion() )
- return true
-end
-
-function OnChat( Message, Player )
- -- Lets get loggin'
- LOGINFO("[" .. Player:GetName() .. "]: " .. Message);
-
- return false
-end \ No newline at end of file