Initial commit: Chatter v1.2.11 (Curse package)
This commit is contained in:
commit
77ee87198c
49 changed files with 9519 additions and 0 deletions
16
Modules/AutoLogChat.lua
Normal file
16
Modules/AutoLogChat.lua
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
local mod = Chatter:NewModule("Chat Autolog")
|
||||
local L = LibStub("AceLocale-3.0"):GetLocale("Chatter")
|
||||
mod.modName = L["Chat Autolog"]
|
||||
|
||||
function mod:OnEnable()
|
||||
self.isLogging = LoggingChat()
|
||||
LoggingChat(true)
|
||||
end
|
||||
|
||||
function mod:OnDisable()
|
||||
LoggingChat(self.isLogging)
|
||||
end
|
||||
|
||||
function mod:Info()
|
||||
return L["Automatically turns on chat logging."]
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue