Skip to content

Commit

Permalink
more multiconnection stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
arpruss committed Jun 9, 2015
1 parent a6c2dd3 commit fdd6528
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ public void preInit(FMLPreInitializationEvent event) {
}

public static void synchronizeConfig() {
portNumber = configFile.getInt("Port number", Configuration.CATEGORY_GENERAL, 4711, 1, 65535, "Port number");
concurrentConnections = configFile.getInt("Max connections (experimental)", Configuration.CATEGORY_GENERAL, 1, 1, 16, "Concurrent connections");
portNumber = configFile.getInt("Port Number", Configuration.CATEGORY_GENERAL, 4711, 1, 65535, "Port number");
concurrentConnections = configFile.getInt("Max Connections", Configuration.CATEGORY_GENERAL, 1, 1, 16, "Max connections");
// defaultDifficulty = configFile.getInt("Default Difficulty", Configuration.CATEGORY_GENERAL, 4711, 1, 65535, "-1=default,0=peaceful,1=easy,2=normal,3=hard");

if (configFile.hasChanged())
Expand Down

0 comments on commit fdd6528

Please sign in to comment.