
StabilityTooltip: Safety First
A simple yet effective mod that helps modpack creators inform players about the stability of installed mods. Now you can immediately see which mods work reliably and which may cause issues in the game.
Configuration Settings
All settings are managed through a JSON configuration file. On first launch, a basic config is automatically created where only Minecraft is marked as "STABLE":
{
"minecraft": "STABLE"
}
To add other mods, follow these steps:
- Add a comma at the end of the line
- Create a new line in the format:
"mod_identifier": "stability_status"
- Repeat the process for each additional mod
Example of a completed configuration file:
{
"minecraft": "STABLE",
"mod_identifier": "stability_status"
}
Available stability levels: STABLE
, SEMISTABLE
, UNSTABLE
, and DANGEROUS
.