diff --git a/patches/api/0006-Add-TPS-From-Region.patch b/patches/api/0006-Add-TPS-From-Region.patch index f537109..b187f21 100644 --- a/patches/api/0006-Add-TPS-From-Region.patch +++ b/patches/api/0006-Add-TPS-From-Region.patch @@ -17,7 +17,7 @@ index 67c021f6d5d2afed92c7ceb4f511e3a43bbe2417..f85b6efd4d2982acfa173920c9fd601d + * Gets the current location TPS. + * + * @param location the location for which to get the TPS -+ * @return current location TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the position is not loaded ++ * @return current location TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region don't exist + */ + public double @Nullable [] getTPS(Location location) { + return server.getTPS(location); @@ -27,7 +27,7 @@ index 67c021f6d5d2afed92c7ceb4f511e3a43bbe2417..f85b6efd4d2982acfa173920c9fd601d + * Gets the current chunk TPS. + * + * @param chunk the chunk for which to get the TPS -+ * @return current chunk TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the chunk is not loaded ++ * @return current chunk TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region don't exist + */ + public double @Nullable [] getTPS(Chunk chunk){ + return server.getTPS(chunk); @@ -50,7 +50,7 @@ index d4c5b06fe4be177442ef1abaf1b223c6c2845930..4d65b05931dff6420c4da45a3f8ab99f + * Gets the current location TPS. + * + * @param location the location for which to get the TPS -+ * @return current location TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the position is not loaded ++ * @return current location TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region don't exist + */ + public double @Nullable [] getTPS(Location location); + @@ -58,7 +58,7 @@ index d4c5b06fe4be177442ef1abaf1b223c6c2845930..4d65b05931dff6420c4da45a3f8ab99f + * Gets the current chunk TPS. + * + * @param chunk the chunk for which to get the TPS -+ * @return current chunk TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the chunk is not loaded ++ * @return current chunk TPS (5s, 15s, 1m, 5m, 15m in Folia-Server), or null if the region don't exist + */ + public double @Nullable [] getTPS(Chunk chunk); + // Folia end