mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
Squashed commit of the following:
commit 4950f403782ba12e54e2254a894b608673e27621
Author: SabreCat <sabrecat@gmail.com>
Date: Fri Jan 5 16:02:08 2024 -0600
fix(armoire): remove unreleased items at definition time
commit b195f0c45581c81f8aec7f5ddb105f5fc5aa7767
Author: SabreCat <sabrecat@gmail.com>
Date: Fri Jan 5 15:37:09 2024 -0600
Revert "fix(content): filter out unreleased gear"
This reverts commit 6f9e526d94b1e473eba37e5f40fa6b889cccff1c.
commit 6f9e526d94b1e473eba37e5f40fa6b889cccff1c
Author: SabreCat <sabrecat@gmail.com>
Date: Thu Jan 4 16:22:39 2024 -0600
fix(content): filter out unreleased gear
This commit is contained in:
parent
b7def686e9
commit
5300de834f
1 changed files with 3 additions and 0 deletions
|
|
@ -1792,6 +1792,9 @@ forEach({
|
|||
text: t(`${setKey}Armoire${upperFirst(gearKey)}Text`),
|
||||
value: 100,
|
||||
});
|
||||
if (gearItem.released === false) {
|
||||
delete set[gearKey];
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue