diff options
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 2592cd1ed..f4c3b3d0b 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -406,6 +406,15 @@ void ServerConfig::Apply(ServerConfig* old, const std::string &useruid) } } + // Reject the broken configs that outdated tutorials keep pushing. + if (!ConfValue("power")->getString("pause").empty()) + { + errstr << "You appear to be using a config file from an ancient outdated tutorial!" << std::endl + << "This will almost certainly not work. You should instead create a config" << std::endl + << "file using the examples shipped with InspIRCd or by referring to the" << std::endl + << "docs available at " INSPIRCD_DOCS "configuration." << std::endl; + } + Fill(); // Handle special items |
