diff options
Diffstat (limited to 'Plugins/SquirrelChatLog.nut')
-rw-r--r-- | Plugins/SquirrelChatLog.nut | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Plugins/SquirrelChatLog.nut b/Plugins/SquirrelChatLog.nut deleted file mode 100644 index 4ef0fd595..000000000 --- a/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);
- }
-}
|