diff options
Diffstat (limited to 'src/modules/m_antibottler.cpp')
-rw-r--r-- | src/modules/m_antibottler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_antibottler.cpp b/src/modules/m_antibottler.cpp index fb85bb7b1..3b57d9d09 100644 --- a/src/modules/m_antibottler.cpp +++ b/src/modules/m_antibottler.cpp @@ -53,10 +53,10 @@ class ModuleAntiBottler : public Module { for (int j = 0; j < strlen(data); j++) { - if (data[j] = ':') + if (data[j] == ':') break; - if (data[j] = '"') + if (data[j] == '"') { not_bottler = true; } |