summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-22 13:16:31 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-22 13:16:31 +0200
commit740769937e36a6961833b72f6c6a75a72ff5b3bf (patch)
treead8152995034c31e7107a90b72b55bd1ad5dd0eb
parentd96e7e97f9036c5ce4cba10d917bf8a66e87654c (diff)
core_ison Remove check that is always true
-rw-r--r--src/coremods/core_ison.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/coremods/core_ison.cpp b/src/coremods/core_ison.cpp
index 53d2e1c49..1412db844 100644
--- a/src/coremods/core_ison.cpp
+++ b/src/coremods/core_ison.cpp
@@ -92,9 +92,7 @@ CmdResult CommandIson::Handle (const std::vector<std::string>& parameters, User
}
}
- if (!reply.empty())
- user->WriteServ(reply);
-
+ user->WriteServ(reply);
return CMD_SUCCESS;
}