diff --git a/patches/server/0008-Add-a-simple-tpsbar.patch b/patches/server/0008-Add-a-simple-tpsbar.patch index d8057e3..3cef546 100644 --- a/patches/server/0008-Add-a-simple-tpsbar.patch +++ b/patches/server/0008-Add-a-simple-tpsbar.patch @@ -117,7 +117,7 @@ index 0000000000000000000000000000000000000000..aafb2f5052c7c8e5971a47308253badb +} diff --git a/src/main/java/me/earthme/luminol/functions/GlobalServerTpsBar.java b/src/main/java/me/earthme/luminol/functions/GlobalServerTpsBar.java new file mode 100644 -index 0000000000000000000000000000000000000000..ff503ab69dce8f034500e64ce31556d721395732 +index 0000000000000000000000000000000000000000..de2f03d6e771c09e8da2da454b7ec4a16c0a17ab --- /dev/null +++ b/src/main/java/me/earthme/luminol/functions/GlobalServerTpsBar.java @@ -0,0 +1,214 @@ @@ -243,7 +243,7 @@ index 0000000000000000000000000000000000000000..ff503ab69dce8f034500e64ce31556d7 + if (removed != null) { + apiPlayer.hideBossBar(removed); + } -+ }, 0, TpsBarConfig.updateInterval); ++ }, 1, TpsBarConfig.updateInterval); + } + + private static void updateTpsBar(double tps, double mspt, @NotNull BossBar bar, @NotNull Player player){ diff --git a/patches/server/0009-Add-a-simple-membar.patch b/patches/server/0009-Add-a-simple-membar.patch index b3fd9b3..3699aed 100644 --- a/patches/server/0009-Add-a-simple-membar.patch +++ b/patches/server/0009-Add-a-simple-membar.patch @@ -115,7 +115,7 @@ index 0000000000000000000000000000000000000000..b632c4a636974535bf001f010de1dcb6 +} diff --git a/src/main/java/me/earthme/luminol/functions/GlobalServerMemoryBar.java b/src/main/java/me/earthme/luminol/functions/GlobalServerMemoryBar.java new file mode 100644 -index 0000000000000000000000000000000000000000..4827562a5b4deca0153995b8e1680d820123a712 +index 0000000000000000000000000000000000000000..3535cf03e7855b4d8b312ccf3a7b0564ea753019 --- /dev/null +++ b/src/main/java/me/earthme/luminol/functions/GlobalServerMemoryBar.java @@ -0,0 +1,171 @@ @@ -240,7 +240,7 @@ index 0000000000000000000000000000000000000000..4827562a5b4deca0153995b8e1680d82 + if (removed != null) { + apiPlayer.hideBossBar(removed); + } -+ }, 0, MembarConfig.updateInterval); ++ }, 1, MembarConfig.updateInterval); + } + + private static void updateMembar(@NotNull BossBar bar, long used, long xmx){