mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-23 17:09:29 +00:00
Upstream has released updates that appear to apply and compile correctly Paper Changes: PaperMC/Paper@681c013 Bundle spark (#11093) PaperMC/Paper@5fee9c6 Move configuration option to a system property PaperMC/Paper@aa3b356 Improve server startup logging (#11110) PaperMC/Paper@9aea240 Properly lookup plugin classes when looked up by spark PaperMC/Paper@7e91a2c Update the bundled spark version Gale Changes: Dreeam-qwq/Gale@a4ed885 Updated Upstream (Paper) Dreeam-qwq/Gale@3932464 [ci skip] Remove TODOs Purpur Changes: PurpurMC/Purpur@936c29a Updated Upstream (Paper) PurpurMC/Purpur@032697e Updated Upstream (Paper) PurpurMC/Purpur@b2d1fea always output bukkit/paper plugin header in plugin command
20 lines
840 B
Diff
20 lines
840 B
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Dreeam <61569423+Dreeam-qwq@users.noreply.github.com>
|
|
Date: Thu, 2 May 2024 20:21:29 -0400
|
|
Subject: [PATCH] Ignore terminal provider warning
|
|
|
|
|
|
diff --git a/src/main/java/io/papermc/paper/PaperBootstrap.java b/src/main/java/io/papermc/paper/PaperBootstrap.java
|
|
index d543b1b107ab8d3eeb1fc3c1cadf489928d2786e..2a554d152403d30b167c0bece8c9e1a2c8ff0bdf 100644
|
|
--- a/src/main/java/io/papermc/paper/PaperBootstrap.java
|
|
+++ b/src/main/java/io/papermc/paper/PaperBootstrap.java
|
|
@@ -18,6 +18,8 @@ public final class PaperBootstrap {
|
|
|
|
getStartupVersionMessages().forEach(LOGGER::info);
|
|
|
|
+ System.setProperty("org.jline.terminal.disableDeprecatedProviderWarning", "true"); // Leaf - Ignore terminal provider warning
|
|
+
|
|
Main.main(options);
|
|
}
|
|
|