Prevent users being able to enable support for all games when they shouldn't

This commit is contained in:
rubenwardy
2023-06-27 21:40:31 +01:00
parent 96f9adb95f
commit 1a8d28a2d8
2 changed files with 8 additions and 2 deletions

View File

@@ -98,7 +98,11 @@
</p>
{% elif package.type.name == "TXP" %}
<p class="text-muted">
{{ _("It's not possible for texture packs to support all games") }}
{{ _("It's not possible for texture packs to support all games.") }}
</p>
{% elif package.type.name == "MOD" %}
<p class="text-muted">
{{ _("The package depends on a game-specific mod, and so cannot support all games.") }}
</p>
{% endif %}