BazCore

Shared framework for Baz addons. Provides lifecycle, events, profiles, slash commands, settings, animations, minimap button, button glow, keybinds, Edit Mode, serialization, and options panels. No dependencies.

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 with local 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 the return ... 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 conditional args.setup = {...} block, and restoring an explicit return { 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