summaryrefslogtreecommitdiffstats
path: root/MCServer
diff options
context:
space:
mode:
Diffstat (limited to 'MCServer')
-rw-r--r--MCServer/Plugins/SquirrelChatLog.nut13
1 files changed, 0 insertions, 13 deletions
diff --git a/MCServer/Plugins/SquirrelChatLog.nut b/MCServer/Plugins/SquirrelChatLog.nut
deleted file mode 100644
index d90cef126..000000000
--- a/MCServer/Plugins/SquirrelChatLog.nut
+++ /dev/null
@@ -1,13 +0,0 @@
-class SquirrelChatLog extends Plugin
-{
- function Initialize()
- {
- this.AddHook(Hook.Chat);
- return true;
- }
-
- function OnChat(Message, Player)
- {
- ::print(Player.GetName() + ": " + Message);
- }
-}