diff --git a/foundation-core/src/main/kotlin/gay/pizza/foundation/core/features/update/UpdateResolver.kt b/foundation-core/src/main/kotlin/gay/pizza/foundation/core/features/update/UpdateResolver.kt index 56fd076..6fce843 100644 --- a/foundation-core/src/main/kotlin/gay/pizza/foundation/core/features/update/UpdateResolver.kt +++ b/foundation-core/src/main/kotlin/gay/pizza/foundation/core/features/update/UpdateResolver.kt @@ -18,6 +18,7 @@ class UpdateResolver { nameOverride ?: key } val installSet = manifest.items + .filter { it.type == "bukkit-plugin" } .filter { installedPlugins.containsKey(it.name) } .associateWith { installedPlugins[it.name] } .toMutableMap()