mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-06 07:02:18 -07:00
Make the GUI graph fancier
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
--- a/net/minecraft/server/gui/MinecraftServerGui.java
|
||||
+++ b/net/minecraft/server/gui/MinecraftServerGui.java
|
||||
@@ -96,7 +96,7 @@
|
||||
@@ -95,8 +95,8 @@
|
||||
|
||||
private JComponent buildInfoPanel() {
|
||||
JPanel jpanel = new JPanel(new BorderLayout());
|
||||
StatsComponent guistatscomponent = new StatsComponent(this.server);
|
||||
- StatsComponent guistatscomponent = new StatsComponent(this.server);
|
||||
- Collection collection = this.finalizers;
|
||||
+ com.destroystokyo.paper.gui.GuiStatsComponent guistatscomponent = new com.destroystokyo.paper.gui.GuiStatsComponent(this.server); // Paper - Make GUI graph fancier
|
||||
+ Collection<Runnable> collection = this.finalizers; // CraftBukkit - decompile error
|
||||
|
||||
Objects.requireNonNull(guistatscomponent);
|
||||
|
Reference in New Issue
Block a user