File Details
099
- R
- May 2, 2026
- 287.88 KB
- 6
- 12.0.5
- Retail
File Name
BazCore-099.zip
Supported Versions
- 12.0.5
BazCore
099 (2026-05-02)
Full Changelog Previous Releases
- CPUPage: fix syntax error from the v098 setup-card refactor. The previous edit replaced the original
return { name="CPU", type="group", args = { ... } }block withlocal args = { ... }but only halfway - the closing braces from the old return statement got left in place (an extra}and an outer},after args closed), and thereturn ...itself was dropped. Net result: GetCPUPage didn't return anything, and the orphan}at line 965 was a top-level syntax error that prevented BazCore from loading at all. Removing the orphan brace, properly closing args at one level of indentation instead of two, adding the conditionalargs.setup = {...}block, and restoring an explicitreturn { name = "CPU", type = "group", args = args }at the bottom of the function. Also kept the entries' original 12-space inner indentation since Lua doesn't care - leaving it consistent across all entries makes the diff smaller and easier to read, bump to 099