Skip to content
This repository has been archived by the owner on May 29, 2022. It is now read-only.

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Sculas committed Nov 18, 2021
1 parent 478501e commit 514e752
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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");

This comment has been minimized.

Copy link
@andreasdc

andreasdc Nov 18, 2021

not "compensated"?

This comment has been minimized.

Copy link
@Sculas

Sculas Nov 18, 2021

Author Collaborator

Yeah, it should be compensated. All I did was fix the typo itself.

c.addComment("settings.smooth-potting", "Make potion throwing smoother");
NachoWorldConfig.loadComments();
}
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 514e752

Please sign in to comment.