17 lines
883 B
Markdown
17 lines
883 B
Markdown
# Load Support
|
|
Shows when the user has to less Java memory allocated, and plays a sound when the game has loaded.<br>
|
|
It is fully configurable in `config/enoughmemory.toml`.
|
|
## Directly Shows a warning message
|
|

|
|
## Blocks the title screen
|
|

|
|
## Config
|
|
The config in `config/enoughmemory.toml` is pretty self explainatory:
|
|
```toml
|
|
startSound = true
|
|
minMemory = 4.0
|
|
errorTitle = "Error: Not enough Java memory!"
|
|
errorDescription = "Please allocate at least {minMemory} GB of Java memory to your Minecraft Instance! You have currently {currentMemory} GB allocated."
|
|
```
|
|
The errorDescription does automatic line breaks. `{minMemory}` and `{currentMemory}` get replaced by their actual values.
|