We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 720cc08 commit ca03d21Copy full SHA for ca03d21
1 file changed
src/ministatus/bot/cogs/status/query.py
@@ -686,6 +686,11 @@ def from_arma3_rules(cls, rules: Arma3Rules) -> Self:
686
name=m.name,
687
url=f"https://steamcommunity.com/sharedfiles/filedetails/?id={m.steam_id}",
688
)
689
+ if not m.dlc
690
+ else StatusMod(
691
+ name=m.name or f"Creator DLC ({m.steam_id})",
692
+ url=f"https://store.steampowered.com/app/{m.steam_id}",
693
+ )
694
for m in rules.mods
695
]
696
return cls(mods=mods)
0 commit comments