2025/11/30 Update

Updated module to NWN:EE v37-17
Updated NWNxEE libraries to latest.
Associated new PRC8 module script for the GUI event.
Deleted old prc_2da_cache creature from top hak as it's now unneeded.
Full compile.
This commit is contained in:
Jaysyn904
2025-11-30 22:04:26 -05:00
parent 243ed8a652
commit 8ca4aed814
1252 changed files with 19391 additions and 19766 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.