From f65dd2c86795601e56494c7b86f63bb3b408e3b3 Mon Sep 17 00:00:00 2001 From: coldino Date: Sun, 3 Mar 2024 11:15:44 +0000 Subject: [PATCH 1/2] Mark Rhynio as a waking tame This allows ASB to classify it as domesticable. --- config/overrides.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config/overrides.yaml b/config/overrides.yaml index 97c4883..bbdeb4d 100644 --- a/config/overrides.yaml +++ b/config/overrides.yaml @@ -1912,6 +1912,9 @@ species: Unused: true # Tameability overrides for wiki.species + /Game/PrimalEarth/Dinos/Rhyniognatha/Rhynio_Character_BP: + taming_method: awake + /Game/Aberration/Dinos/Nameless/Xenomorph_Character_BP: taming_method: none From 4e66d43cec8ef1977dfd1d640256ac2d557f584e Mon Sep 17 00:00:00 2001 From: coldino Date: Sun, 3 Mar 2024 11:32:18 +0000 Subject: [PATCH 2/2] Ignore vulnerability 61893 (urllib3) There's no user control of any actions in this app. --- Pipfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Pipfile b/Pipfile index 5cc103c..d7fcfbb 100644 --- a/Pipfile +++ b/Pipfile @@ -31,7 +31,7 @@ psutil = "~=5.9.0" python_version = "3.10" [scripts] -check = "pipenv check -i 39253 -i 39621 -i 41002 -i 50916 -i 51457 -i 61416" +check = "pipenv check -i 39253 -i 39621 -i 41002 -i 50916 -i 51457 -i 61416 -i 61893" tests = "pytest --cov=. --cov-report=xml --no-cov-on-fail -m 'not uses_copyright_material'" tests-nogame = "pytest --cov=. --cov-report=xml --no-cov-on-fail -m 'not uses_copyright_material and not requires_game'" tests-nocov = "pytest -m 'not uses_copyright_material'"