https://github.com/isxander/minecraftissues
A repository of Minecraft errors and solutions/recommendations.
https://github.com/isxander/minecraftissues
Last synced: over 1 year ago
JSON representation
A repository of Minecraft errors and solutions/recommendations.
- Host: GitHub
- URL: https://github.com/isxander/minecraftissues
- Owner: isXander
- License: mit
- Created: 2021-06-20T15:13:31.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2022-12-13T16:56:27.000Z (over 3 years ago)
- Last Synced: 2025-01-18T10:51:28.893Z (over 1 year ago)
- Size: 81.1 KB
- Stars: 6
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MinecraftIssues
A repository of Minecraft errors and solutions/recommendations.
### Schema
```json5
{
"schema_version": 1,
"categories": [
{
"name": "Solutions",
"checks": [
{
"message": "You encountered a first-time crash using CEM mod. Just launch again to resolve the issue.",
// methods can either be terminating or conditioning
// terminating are actual checks, for example: 'regex', 'contains' or 'mod_loaded'
// conditioning take more methods such as: 'and', 'or', 'not'
"method": "and",
"conditions": [ // conditions take more methods, can be another 'and', etc
{
"method": "contains",
"query": "java.lang.RuntimeException: Could not execute entrypoint stage 'client' due to errors, provided by 'cem'!"
},
{
"method": "contains",
"query": "Caused by: java.lang.ClassNotFoundException: me.lortseam.completeconfig.gui.cloth.ClothConfigScreenBuilder"
}
]
}
]
}
]
}
```