Skip to content

Commit

Permalink
Lower the default max_users from 100 to 15
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowNinja authored and kahrl committed Sep 28, 2013
1 parent 4ea0e4f commit 372d638
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion minetest.conf.example
Expand Up @@ -218,7 +218,7 @@
# Message of the Day
#motd = Welcome to this awesome Minetest server!
# Maximum number of players connected simultaneously
#max_users = 100
#max_users = 15
# Set to true to disallow old clients from connecting
#strict_protocol_version_checking = false
# Set to true to enable creative mode (unlimited inventory)
Expand Down
2 changes: 1 addition & 1 deletion src/defaultsettings.cpp
Expand Up @@ -159,7 +159,7 @@ void set_default_settings(Settings *settings)
// "map-dir" doesn't exist by default.
settings->setDefault("default_game", "minetest");
settings->setDefault("motd", "");
settings->setDefault("max_users", "100");
settings->setDefault("max_users", "15");
settings->setDefault("strict_protocol_version_checking", "false");
settings->setDefault("creative_mode", "false");
settings->setDefault("enable_damage", "true");
Expand Down

0 comments on commit 372d638

Please sign in to comment.