Skip to content

Commit

Permalink
Disable memory reserve allocating (#10180)
Browse files Browse the repository at this point in the history
  • Loading branch information
Warriorrrr committed Jan 27, 2024
1 parent b333831 commit 0cc3a7e
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions patches/server/1044-Disable-memory-reserve-allocating.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Warrior <50800980+Warriorrrr@users.noreply.github.com>
Date: Thu, 18 Jan 2024 23:25:09 +0100
Subject: [PATCH] Disable memory reserve allocating


diff --git a/src/main/java/net/minecraft/CrashReport.java b/src/main/java/net/minecraft/CrashReport.java
index e047dee632022abfe05865d1e71838be8d5d053a..99c5038672b09d0874125e3df280174c1e8151e6 100644
--- a/src/main/java/net/minecraft/CrashReport.java
+++ b/src/main/java/net/minecraft/CrashReport.java
@@ -253,7 +253,7 @@ public class CrashReport {
}

public static void preload() {
- MemoryReserve.allocate();
+ // MemoryReserve.allocate(); // Paper - Disable memory reserve allocating
(new CrashReport("Don't panic!", new Throwable())).getFriendlyReport();
}
}

0 comments on commit 0cc3a7e

Please sign in to comment.