2019-02-03 13:59:33 +01:00
|
|
|
title: Content Flags
|
|
|
|
|
|
|
|
Content flags allow you to hide content based on your preferences.
|
|
|
|
The filtering is done server-side, which means that you don't need to update
|
|
|
|
your client to use new flags.
|
|
|
|
|
|
|
|
## Flags
|
|
|
|
|
2020-09-17 00:32:24 +02:00
|
|
|
Minetest allows you to specify a comma-separated list of flags to hide in the
|
|
|
|
client:
|
|
|
|
|
|
|
|
```
|
|
|
|
contentdb_flag_blacklist = nonfree, bad_language, drugs
|
|
|
|
```
|
|
|
|
|
|
|
|
A flag can be:
|
|
|
|
|
2021-12-20 22:24:06 +01:00
|
|
|
* `nonfree`: can be used to hide packages which do not qualify as
|
2021-12-20 22:07:12 +01:00
|
|
|
'free software', as defined by the Free Software Foundation.
|
2021-12-20 22:24:06 +01:00
|
|
|
* `wip`: packages marked as Work in Progress
|
|
|
|
* `deprecated`: packages marked as Deprecated
|
2020-07-17 22:18:27 +02:00
|
|
|
* A content warning, given below.
|
2021-12-20 22:24:06 +01:00
|
|
|
* `*`: hides all content warnings.
|
2021-12-20 22:07:12 +01:00
|
|
|
|
2021-12-20 22:24:06 +01:00
|
|
|
There are also two meta-flags, which are designed so that we can change how different platforms filter the package list
|
|
|
|
without making a release.
|
|
|
|
|
2022-01-30 20:24:33 +01:00
|
|
|
* `android_default`: currently same as `*, deprecated`. Hides all content warnings and deprecated packages
|
|
|
|
* `desktop_default`: currently same as `deprecated`. Hides deprecated packages
|
2019-02-03 13:59:33 +01:00
|
|
|
|
2020-09-17 00:32:24 +02:00
|
|
|
## Content Warnings
|
2019-02-03 13:59:33 +01:00
|
|
|
|
2020-07-17 22:18:27 +02:00
|
|
|
Packages with mature content will be tagged with a content warning based
|
|
|
|
on the content type.
|
2019-02-03 13:59:33 +01:00
|
|
|
|
2021-12-20 22:24:06 +01:00
|
|
|
* `bad_language`: swearing.
|
|
|
|
* `drugs`: drugs or alcohol.
|
2020-07-17 22:18:27 +02:00
|
|
|
* `gambling`
|
2021-12-20 22:24:06 +01:00
|
|
|
* `gore`: blood, etc.
|
|
|
|
* `horror`: shocking and scary content.
|
|
|
|
* `violence`: non-cartoon violence.
|