STANEK: Add FragmentType to NS Enums (#2341)

This commit is contained in:
Adam Weeden
2025-10-13 11:57:19 -04:00
committed by GitHub
parent 2dfc2126df
commit 0335d8bc70
5 changed files with 8 additions and 4 deletions
+2
View File
@@ -117,6 +117,7 @@ import { isIPAddress } from "./Types/strings";
import { compile } from "./NetscriptJSEvaluator";
import { Script } from "./Script/Script";
import { NetscriptFormat } from "./NetscriptFunctions/Format";
import { FragmentTypeEnum } from "./CotMG/FragmentType";
export const enums: NSEnums = {
CityName,
@@ -135,6 +136,7 @@ export const enums: NSEnums = {
OrderType,
BladeburnerActionType,
SpecialBladeburnerActionTypeForSleeve,
FragmentType: FragmentTypeEnum,
};
for (const val of Object.values(enums)) Object.freeze(val);
Object.freeze(enums);