2025/12/05 Update

Fixed overlong hak name (abilities -> ability).
Updated PEPS
Updated NWNxEE libraries.
Updated readme
Updated nim tools.
This commit is contained in:
Jaysyn904
2025-12-05 10:20:25 -05:00
parent 431e59b7fe
commit 199cf4b044
2045 changed files with 143464 additions and 27726 deletions

View File

@@ -64,8 +64,8 @@ void NWNX_SQL_PreparedObjectFull(int position, object value, int base64 = TRUE);
/// @param position The nth ? in a prepared statement.
void NWNX_SQL_PreparedNULL(int position);
/// @brief Set the Json value of a prepared statement at given position.
/// Convienence function to match other Prepared(type) functions.
/// @brief Set the Json value of a prepared statement at given position.
/// Convenience function to match other Prepared(type) functions.
/// @param position The nth ? in a prepared statement.
/// @param value The value to set.
void NWNX_SQL_PreparedJson(int position, json value);
@@ -103,7 +103,7 @@ void NWNX_SQL_DestroyPreparedQuery();
/// @return The last error message generated by the database.
string NWNX_SQL_GetLastError();
/// @brief Gets the number of parameteres expected by a prepared query.
/// @brief Gets the number of parameters expected by a prepared query.
/// @return Returns the number of parameters expected by the prepared query or -1 if no query is prepared.
int NWNX_SQL_GetPreparedQueryParamCount();