diff --git a/app.py b/app.py index 5f494e2..59b7834 100644 --- a/app.py +++ b/app.py @@ -120,10 +120,11 @@ def minecraft(): """Dedicated Minecraft development page""" all_projects = load_projects() - # Filter minecraft plugins only + # Filter minecraft plugins only (velocity, spigot, paper, bukkit, etc.) + minecraft_project_types = ['minecraft', 'velocity', 'spigot', 'paper', 'bukkit', 'purpur'] minecraft_projects = [] for key, info in all_projects.items(): - if info.get('project_type') == 'minecraft' and info.get('name'): + if info.get('project_type') in minecraft_project_types and info.get('name'): proj = { 'name': info.get('name'), 'description': info.get('description', ''),