NETSCRIPT: Revert FormattedCode type (#500)

This commit is contained in:
David Walker
2023-05-03 04:13:35 -07:00
committed by GitHub
parent 6e028a0744
commit ad5a1c4bac
3 changed files with 8 additions and 11 deletions
+1 -1
View File
@@ -252,7 +252,7 @@ export abstract class BaseServer implements IServer {
// Check if the script already exists, and overwrite it if it does
const script = this.scripts.get(filename);
if (script) {
// content setter handles module invalidation and code formatting
// content setter handles module invalidation
script.content = code;
return { overwritten: true };
}