Increase default heap from 512MB to 1GB to avoid issues with Fabric remapper

This is still substantially less than the original 4GB
This commit is contained in:
embeddedt 2023-08-09 12:14:50 -04:00
parent eec5ec7efb
commit 590c939778
No known key found for this signature in database
GPG Key ID: A69433EC199B5613

View File

@ -204,8 +204,8 @@ configure(subprojects.findAll {it.name == "forge" || it.name == "fabric"}) {
}
runs {
client {
vmArgs "-Xmx512m"
vmArgs "-Xms512m"
vmArgs "-Xmx1G"
vmArgs "-Xms1G"
}
}
}