diff options
author | David Gay <david@davidgay.org> | 2021-06-22 22:00:06 -0400 |
---|---|---|
committer | David Gay <david@davidgay.org> | 2021-06-22 22:00:06 -0400 |
commit | 67881d62653889fbd72ffae889684fa97b547e5a (patch) | |
tree | 42460e7e53f99a5d8c00314bb1d71c2016b89392 | |
parent | ff746d288cf7c1c84554528e24d193d39493f266 (diff) |
Fix rusted lockboxes not being unlockable due to setting equipment tag requirement incorrectly
-rw-r--r-- | CHANGELOG.md | 5 | ||||
-rw-r--r-- | data/activities.yml | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b433b0d..082a7dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.1.11.3] - 2021-06-22 + +### Fixed +- Couldn't unlock rusted lockboxes due to equipment requirement being set incorrectly. + ## [0.1.11.2] - 2021-06-16 ## UI diff --git a/data/activities.yml b/data/activities.yml index 8f2231a..457faca 100644 --- a/data/activities.yml +++ b/data/activities.yml @@ -2458,7 +2458,7 @@ synthsever_rusted_lockbox: whatnot: requirements: - type: "equipment" - gid: "lockpicks" + tag: "lockpicks" - type: "skill" gid: "synthsever" level: 1 |