major bug fixes & breaking change in database code

Major bug fixes and improvements have been made. There's also a breaking change for plugins using the database system. All database related functions are now async based.
This commit is contained in:
DJj123dj
2024-11-24 23:26:14 +01:00
parent 6b36b1caf6
commit b22f7b2de7
18 changed files with 141 additions and 118 deletions
+2 -2
View File
@@ -391,9 +391,9 @@ export class ODDebugFileManager {
writeText(text:string){
this.#writeDebugFile(text)
}
/**Write a custom note to the debug file (starting with `[NODE]:`) */
/**Write a custom note to the debug file (starting with `[NOTE]:`) */
writeNote(text:string){
this.#writeDebugFile("[NODE]: "+text)
this.#writeDebugFile("[NOTE]: "+text)
}
}