From 28c042343eee56746107ac1fd1872cbfa51e0842 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Tue, 12 Jan 2021 10:36:07 +0200 Subject: [PATCH] All children of infinite slots will now hide when "hide when full" is active --- app/imports/ui/creature/slots/Slots.vue | 1 - 1 file changed, 1 deletion(-) diff --git a/app/imports/ui/creature/slots/Slots.vue b/app/imports/ui/creature/slots/Slots.vue index 1a5343c9..c4e78775 100644 --- a/app/imports/ui/creature/slots/Slots.vue +++ b/app/imports/ui/creature/slots/Slots.vue @@ -141,7 +141,6 @@ export default { }).filter(slot => !( // Hide full and ignored slots !this.showHiddenSlots && slot.hideWhenFull && - slot.quantityExpected > 0 && slot.totalFilled >= slot.quantityExpected || slot.ignored ));