Fixed: Slots that use conditions now only hide on falsey value (false, 0, '')
This commit is contained in:
@@ -120,7 +120,7 @@ export default {
|
||||
'ancestors.id': this.creatureId,
|
||||
type: 'propertySlot',
|
||||
$or: [
|
||||
{slotConditionResult: true},
|
||||
{slotConditionResult: {$nin: [false, 0, '']}},
|
||||
{slotConditionResult: {$exists: false}},
|
||||
],
|
||||
removed: {$ne: true},
|
||||
|
||||
Reference in New Issue
Block a user