Fix IDAllocator not being utilized properly in dynamic synchable group

This commit is contained in:
DBotThePony 2025-03-30 16:34:18 +07:00
parent 30fb67f63a
commit 2f03d6730a
Signed by: DBot
GPG Key ID: DCC23B5715498507

View File

@ -269,6 +269,7 @@ class DynamicSynchableGroup<T : ISynchable>(
if (value2slot.isNotEmpty()) {
value2slot.clear()
id2slot.clear()
idAllocator.reset()
remoteStates.toTypedArray().forEach { it.clear() }
}
@ -319,6 +320,7 @@ class DynamicSynchableGroup<T : ISynchable>(
val slot = value2slot.remove(element)!!
checkNotNull(id2slot.remove(slot.id))
remoteStates.forEach { it.remove(slot) }
idAllocator.release(slot.id)
return true
}