diff --git a/packages/greenbox-data/package.json b/packages/greenbox-data/package.json index 04b630b..810e9fb 100644 --- a/packages/greenbox-data/package.json +++ b/packages/greenbox-data/package.json @@ -1,6 +1,6 @@ { "name": "greenbox-data", - "version": "0.0.3", + "version": "0.0.4", "description": "> TODO: description", "author": "Sam Gaus ", "homepage": "https://github.com/loathers/greenbox#readme", @@ -39,7 +39,6 @@ }, "prettier": "greenbox-prettier-config", "dependencies": { - "data-of-loathing": "^1.4.0", "jsoncrush": "^1.1.8" } } diff --git a/packages/greenbox-script/src/greenbox.ts b/packages/greenbox-script/src/greenbox.ts index 2499d2c..7d01547 100644 --- a/packages/greenbox-script/src/greenbox.ts +++ b/packages/greenbox-script/src/greenbox.ts @@ -5,7 +5,6 @@ import { getMiscTattoos, getOutfitTattoos, isOutfitTattoo, - isSkillPermable, ItemStatus, loadIotMs, loadPaths, @@ -104,7 +103,7 @@ function checkSkills(): RawSkill[] { } return Skill.all() - .filter((skill) => isSkillPermable(skill)) + .filter((skill) => skill.permable) .map((skill) => [toInt(skill), getStatus(skill), getLevel(skill)]); } diff --git a/yarn.lock b/yarn.lock index 7a69c68..c46b84c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -6232,7 +6232,6 @@ __metadata: "@trivago/prettier-plugin-sort-imports": "npm:^4.3.0" "@typescript-eslint/eslint-plugin": "npm:^7.16.0" "@typescript-eslint/parser": "npm:^7.16.0" - data-of-loathing: "npm:^1.4.0" eslint: "npm:^8.57.0" eslint-config-prettier: "npm:^9.1.0" eslint-plugin-prettier: "npm:^5.1.3"