aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_chghost.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2022-09-30 20:21:59 +0100
committerGravatar Sadie Powell2022-09-30 20:21:59 +0100
commite4efd41a99e1237b61336555af0398ef5f634a4d (patch)
tree33d556a2347e0e1531546cf0d661b40512c3b620 /src/modules/m_chghost.cpp
parentUse auto instead of type names where the type is obvious. (diff)
Use a global typedef for representing a character set.
Diffstat (limited to 'src/modules/m_chghost.cpp')
-rw-r--r--src/modules/m_chghost.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_chghost.cpp b/src/modules/m_chghost.cpp
index 0cb65bf6e..e97526172 100644
--- a/src/modules/m_chghost.cpp
+++ b/src/modules/m_chghost.cpp
@@ -30,7 +30,7 @@ class CommandChghost final
: public Command
{
public:
- std::bitset<UCHAR_MAX + 1> hostmap;
+ CharState hostmap;
CommandChghost(Module* Creator)
: Command(Creator,"CHGHOST", 2)