Skip to content

Commit

Permalink
badger 1.0.1
Browse files Browse the repository at this point in the history
* Remove usage of `+ 9` and instead use `+ PAIR_INCREMENT`
  • Loading branch information
gaymeowing committed Nov 18, 2024
1 parent 2b0a280 commit 0464e0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
8 changes: 2 additions & 6 deletions libs/badger/LIBRARY.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
tags = [
"Badge",
"BadgeService",
"Wrapper",
]
version = "1.0.0"
tags = [ "Badge", "BadgeService", "Wrapper" ]
version = "1.0.1"

[runtime]
main = "roblox"
2 changes: 1 addition & 1 deletion libs/badger/init.luau
Original file line number Diff line number Diff line change
Expand Up @@ -292,8 +292,8 @@ do
amount_checked ~= TOTAL_IDS and
os.clock() - info.start >= FETCH_DELAY
then
local check_end = check_start + PAIR_INCREMENT
local ids_to_check = info.ids_to_check
local check_end = check_start + 9

table.clear(ids_to_check)
info.ids_to_check = table.move(
Expand Down

0 comments on commit 0464e0e

Please sign in to comment.