diff --git a/src/helpers/CommonCLI.cpp b/src/helpers/CommonCLI.cpp index 453301a2..d495aada 100644 --- a/src/helpers/CommonCLI.cpp +++ b/src/helpers/CommonCLI.cpp @@ -977,7 +977,8 @@ void CommonCLI::handleRegionCmd(char* command, char* reply) { if (region == NULL) { strcpy(reply, "Err - unable to put"); } else { - strcpy(reply, "OK"); + region->flags = 0; // New default: enable flood + strcpy(reply, "OK - (flood allowed)"); } } } else if (n >= 3 && strcmp(parts[1], "remove") == 0) {