From 8d7f95e2f3015909444d5b727ab2b51d663178fa Mon Sep 17 00:00:00 2001 From: Azgaar Date: Fri, 20 Mar 2020 00:46:07 +0300 Subject: [PATCH] v1.3.01a --- modules/ui/burgs-overview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/burgs-overview.js b/modules/ui/burgs-overview.js index 428f2f1f..19665c01 100644 --- a/modules/ui/burgs-overview.js +++ b/modules/ui/burgs-overview.js @@ -112,7 +112,7 @@ function overviewBurgs() { function getCultureOptions(culture) { let options = ""; - pack.cultures.forEach(c => options += ``); + pack.cultures.filter(c => !c.removed).forEach(c => options += ``); return options; }