diff options
| author | 2020-11-03 19:57:39 +0000 | |
|---|---|---|
| committer | 2020-11-03 20:03:02 +0000 | |
| commit | e21af089ba5e2a6a8963a0e0f925aef6ed7cd4b8 (patch) | |
| tree | 3bd89473fc796689e0eac25dc5d96525b6ed1323 /src/users.cpp | |
| parent | Move FilePosition to fileutils.h and use in ConfigTag. (diff) | |
| download | inspircd++-e21af089ba5e2a6a8963a0e0f925aef6ed7cd4b8.tar.gz inspircd++-e21af089ba5e2a6a8963a0e0f925aef6ed7cd4b8.tar.bz2 inspircd++-e21af089ba5e2a6a8963a0e0f925aef6ed7cd4b8.zip | |
Rename ConfigTag::tag to ConfigTag::name.
Diffstat (limited to 'src/users.cpp')
| -rw-r--r-- | src/users.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/users.cpp b/src/users.cpp index efe91c4bb..b867e598d 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1239,7 +1239,7 @@ ConnectClass::ConnectClass(std::shared_ptr<ConfigTag> tag, char t, const std::st // Connect classes can inherit from each other but this is problematic for modules which can't use // ConnectClass::Update so we build a hybrid tag containing all of the values set on this class as // well as the parent class. - config = std::make_shared<ConfigTag>(tag->tag, tag->source); + config = std::make_shared<ConfigTag>(tag->name, tag->source); for (const auto& [key, value] : parent->config->GetItems()) { // The class name and parent name are not inherited |
