Skip to content

Commit

Permalink
Fixed a typo in ConfigContainer
Browse files Browse the repository at this point in the history
varient -> variant
  • Loading branch information
YannickFricke committed Dec 16, 2023
1 parent 25d8588 commit d8cf0ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/emu/grasscutter/config/ConfigContainer.java
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ public static class Server {
public boolean logCommands = getBoolFromEnv("SERVER_LOG_COMMANDS", false);

/**
* If enabled, the 'require' Lua function will load the script's compiled varient into the context. (faster; doesn't work as well)
* If enabled, the 'require' Lua function will load the script's compiled variant into the context. (faster; doesn't work as well)
* If disabled, all 'require' calls will be replaced with the referenced script's source. (slower; works better)
*/
public boolean fastRequire = getBoolFromEnv("SERVER_FAST_REQUIRE", true);
Expand Down

0 comments on commit d8cf0ac

Please sign in to comment.