From 514e7526828f282ae588f79b412b881bd2e6ff41 Mon Sep 17 00:00:00 2001 From: Lucaskyy Date: Thu, 18 Nov 2021 11:36:56 +0100 Subject: [PATCH] fix typo --- .../main/java/me/elier/nachospigot/config/NachoConfig.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NachoSpigot-Server/src/main/java/me/elier/nachospigot/config/NachoConfig.java b/NachoSpigot-Server/src/main/java/me/elier/nachospigot/config/NachoConfig.java index 7c9973144..dfedb89ef 100644 --- a/NachoSpigot-Server/src/main/java/me/elier/nachospigot/config/NachoConfig.java +++ b/NachoSpigot-Server/src/main/java/me/elier/nachospigot/config/NachoConfig.java @@ -141,7 +141,7 @@ static void loadComments() { c.addComment("settings.tile-entity-ticking-time", "Ticking time (20 ticks per second) for usage on tile entity operations."); c.addComment("settings.item-dirty-ticks", "Controls the interval for the item-dirty check. Minecraft checks an item every tick to see if it was changed. This can be expensive because it also needs to check all NBT data. Spigot only checks for basic count/data/type data and does a deep check every 20 ticks by default."); c.addComment("settings.use-tcp-fastopen", "Enables the TCP_FASTOPEN socket option"); - c.addComment("settings.lag-compensated-potions", "Enables lag compesation throwing potions"); + c.addComment("settings.lag-compensated-potions", "Enables lag compensation throwing potions"); c.addComment("settings.smooth-potting", "Make potion throwing smoother"); NachoWorldConfig.loadComments(); } @@ -361,7 +361,7 @@ private static void enableFastMath() { enableFastMath = getBoolean("settings.enable-fastmath", false); } - public static int tileEntityTickingTime = 20; // required to be initialized so tests don't fail + public static int tileEntityTickingTime = 20; private static void tileEntityTickingTime() { tileEntityTickingTime = getInt("settings.tile-entity-ticking-time", 20);