7 lines
399 B
Lua
7 lines
399 B
Lua
---@diagnostic disable: missing-return, lowercase-global
|
|
|
|
---@param toggle boolean
|
|
---@return 1nil isLogging
|
|
---Enables or disables saving combat log data to a file. Combat log data will be saved to the file Logs/WoWCombatLog.txt (path is relative to the folder containing the World of Warcraft client); the file is not actually updated until the player logs out.
|
|
function LoggingCombat(toggle) end
|