modified: app.py

This commit is contained in:
SimolZimol
2026-01-07 16:29:58 +01:00
parent fc30c0b3de
commit 62b5f9c9c6

5
app.py
View File

@@ -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', ''),