Ammo doesn't need to be equipped

This commit is contained in:
Stefan Zermatten
2023-06-21 15:27:59 +02:00
parent c1544213e7
commit d9ef848c4e

View File

@@ -13,7 +13,7 @@
</v-list> </v-list>
<v-card v-else> <v-card v-else>
<v-card-text> <v-card-text>
No equipped items found with the tag "{{ itemConsumed.tag }}" No active items found with the tag "{{ itemConsumed.tag }}"
</v-card-text> </v-card-text>
</v-card> </v-card>
</template> </template>
@@ -42,7 +42,6 @@ export default {
return CreatureProperties.find({ return CreatureProperties.find({
'ancestors.id': this.action.ancestors[0].id, 'ancestors.id': this.action.ancestors[0].id,
type: 'item', type: 'item',
equipped: true,
tags: this.itemConsumed.tag, tags: this.itemConsumed.tag,
removed: {$ne: true}, removed: {$ne: true},
inactive: {$ne: true}, inactive: {$ne: true},