summaryrefslogtreecommitdiffstats
path: root/MCServer/Plugins/ChatLog/plugin.lua
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-10-08 22:29:58 +0200
committerMattes D <github@xoft.cz>2014-10-08 22:29:58 +0200
commitb77d721daa1a9218fe0ee30fea83cea57f11f2ed (patch)
treebb7da1724320c934396a3064065f9892468d2803 /MCServer/Plugins/ChatLog/plugin.lua
parentMerge pull request #1518 from mc-server/AcaciaTrees (diff)
parentReordered .gitmodules. Fixes #496 (diff)
downloadcuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.gz
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.bz2
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.lz
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.xz
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.tar.zst
cuberite-b77d721daa1a9218fe0ee30fea83cea57f11f2ed.zip
Diffstat (limited to 'MCServer/Plugins/ChatLog/plugin.lua')
m---------MCServer/Plugins/ChatLog0
-rw-r--r--MCServer/Plugins/ChatLog/plugin.lua31
2 files changed, 0 insertions, 31 deletions
diff --git a/MCServer/Plugins/ChatLog b/MCServer/Plugins/ChatLog
new file mode 160000
+Subproject 983d23ca37baa89f7e4dc11d71502d9c059f637
diff --git a/MCServer/Plugins/ChatLog/plugin.lua b/MCServer/Plugins/ChatLog/plugin.lua
deleted file mode 100644
index adbf986e0..000000000
--- a/MCServer/Plugins/ChatLog/plugin.lua
+++ /dev/null
@@ -1,31 +0,0 @@
-
--- plugin.lua
-
--- Implements the main entrypoint for the plugin, as well as all the handling needed
-
--- ChatLog plugin logs all chat messages into the server log
-
-
-
-
-
-function Initialize(Plugin)
- Plugin:SetName("ChatLog")
- Plugin:SetVersion(3)
-
- cPluginManager.AddHook(cPluginManager.HOOK_CHAT, OnChat)
-
- LOG("Initialized " .. Plugin:GetName() .. " v." .. Plugin:GetVersion())
- return true
-end
-
-
-
-
-
-function OnChat(Player, Message)
- -- Lets get loggin'
- LOGINFO("[" .. Player:GetName() .. "]: " .. StripColorCodes(Message));
-
- return false
-end \ No newline at end of file