2025/12/01 Updated

Removed unneeded 2DAs from top hak.
Updated NWNxEE libraries
Updated PEPS
Updated nim tooling.
Updated NPC template scripts.
Full compile.
This commit is contained in:
Jaysyn904
2025-12-01 13:05:25 -05:00
parent 9142d652cd
commit 223d71f051
2292 changed files with 29747 additions and 30806 deletions

View File

@@ -3072,7 +3072,7 @@ int XREVRANGE(
/**
* XLEN
*
* Return the number of entires in a stream
* Return the number of entries in a stream
*
* Time complexity: O(1)
* Annotated return value: integer
@@ -3087,7 +3087,7 @@ int XLEN(
* Return never seen elements in multiple streams, with IDs greater than the ones reported by the caller for each stream. Can block.
*
* Time complexity: For each stream mentioned: O(N) with N being the number of elements being
* returned, it menas that XREAD-ing with a fixed COUNT is O(1). Note that when
* returned, it means that XREAD-ing with a fixed COUNT is O(1). Note that when
* the BLOCK option is used, XADD will pay O(M) time in order to serve the M
* clients blocked on the stream getting new data.