From 590c93977832291d88cdaab4e1b5791e3ec05575 Mon Sep 17 00:00:00 2001 From: embeddedt <42941056+embeddedt@users.noreply.github.com> Date: Wed, 9 Aug 2023 12:14:50 -0400 Subject: [PATCH] Increase default heap from 512MB to 1GB to avoid issues with Fabric remapper This is still substantially less than the original 4GB --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index b7a37bc4..358276e6 100644 --- a/build.gradle +++ b/build.gradle @@ -204,8 +204,8 @@ configure(subprojects.findAll {it.name == "forge" || it.name == "fabric"}) { } runs { client { - vmArgs "-Xmx512m" - vmArgs "-Xms512m" + vmArgs "-Xmx1G" + vmArgs "-Xms1G" } } }