update: character

This commit is contained in:
Vick Scarlet
2026-08-16 20:06:16 +08:00
committed by 神戸小鳥
parent ad4e83fc47
commit f4204601ee
22 changed files with 495 additions and 101 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ export const useAllocator = () => {
return { ...prev, [key]: final }
})
},
[allocate, total],
[allocate, total, setAlloc],
)
return [alloc, allocator] as const
}
@@ -71,7 +71,7 @@ export const usePointRandomizer = () => {
}
setAlloc(alloc)
},
[allocate, total],
[allocate, total, setAlloc],
)
}