diff options
| author | 2018-04-14 15:43:03 +0100 | |
|---|---|---|
| committer | 2018-04-16 15:29:55 +0100 | |
| commit | 780dda83ba3857bc3c330d4b5d38bb251a9d879b (patch) | |
| tree | 75034915142a3e1362f0f9d59c8e96e1eec22931 /src/modules/m_cloaking.cpp | |
| parent | Convert ConfigTag::getDuration to return an unsigned long. (diff) | |
Add ConfigTag::getUInt for reading unsigned config values.
Diffstat (limited to 'src/modules/m_cloaking.cpp')
| -rw-r--r-- | src/modules/m_cloaking.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp index e5f912c95..515244231 100644 --- a/src/modules/m_cloaking.cpp +++ b/src/modules/m_cloaking.cpp @@ -353,7 +353,7 @@ class ModuleCloaking : public Module if (modestr == "half") { mode = MODE_HALF_CLOAK; - domainparts = tag->getInt("domainparts", 3, 1, 10); + domainparts = tag->getUInt("domainparts", 3, 1, 10); } else if (modestr == "full") mode = MODE_OPAQUE; |
