feat(servers): only enable 1.20.4 survie MC server
All checks were successful
Discord / discord commits (push) Successful in 38s
All checks were successful
Discord / discord commits (push) Successful in 38s
This commit is contained in:
parent
ec0576965f
commit
974d231027
1 changed files with 15 additions and 4 deletions
|
@ -36,13 +36,24 @@ in {
|
||||||
in {
|
in {
|
||||||
# Vanilla Survival
|
# Vanilla Survival
|
||||||
sv = {
|
sv = {
|
||||||
enable = false;
|
enable = true;
|
||||||
|
|
||||||
|
jvmMaxAllocation = "10G";
|
||||||
|
jvmInitialAllocation = "2G";
|
||||||
|
jvmPackage = jre18;
|
||||||
|
jvmOpts = "";
|
||||||
|
|
||||||
serverConfig =
|
serverConfig =
|
||||||
{
|
{
|
||||||
server-port = 25569;
|
server-port = 25569;
|
||||||
|
motd = "1.20.4 gaming";
|
||||||
|
|
||||||
extra-options = {
|
extra-options = {
|
||||||
|
difficulty = "hard";
|
||||||
|
enable-command-block = true;
|
||||||
|
max-players = 10;
|
||||||
|
view-distance = 16;
|
||||||
|
level-seed = "8764718009920";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// defaults;
|
// defaults;
|
||||||
|
@ -77,7 +88,7 @@ in {
|
||||||
# Modded https://www.curseforge.com/minecraft/modpacks/steam-punk
|
# Modded https://www.curseforge.com/minecraft/modpacks/steam-punk
|
||||||
# curseforge-server-downloader --pack 643605 --version latest
|
# curseforge-server-downloader --pack 643605 --version latest
|
||||||
steampunk = {
|
steampunk = {
|
||||||
enable = true;
|
enable = false;
|
||||||
|
|
||||||
jvmMaxAllocation = "12G";
|
jvmMaxAllocation = "12G";
|
||||||
jvmInitialAllocation = "2G";
|
jvmInitialAllocation = "2G";
|
||||||
|
@ -113,7 +124,7 @@ in {
|
||||||
# Modded https://www.curseforge.com/minecraft/modpacks/ultimate-building-modpack
|
# Modded https://www.curseforge.com/minecraft/modpacks/ultimate-building-modpack
|
||||||
# With https://www.curseforge.com/minecraft/mc-mods/bits-and-chisels
|
# With https://www.curseforge.com/minecraft/mc-mods/bits-and-chisels
|
||||||
builder = {
|
builder = {
|
||||||
enable = true;
|
enable = false;
|
||||||
|
|
||||||
jvmMaxAllocation = "6G";
|
jvmMaxAllocation = "6G";
|
||||||
jvmInitialAllocation = "2G";
|
jvmInitialAllocation = "2G";
|
||||||
|
@ -122,7 +133,7 @@ in {
|
||||||
|
|
||||||
serverConfig =
|
serverConfig =
|
||||||
{
|
{
|
||||||
server-port = 25566;
|
server-port = 25567;
|
||||||
motd = "creative mode gaming with mods";
|
motd = "creative mode gaming with mods";
|
||||||
|
|
||||||
extra-options = {
|
extra-options = {
|
||||||
|
|
Loading…
Reference in a new issue