diff --git a/zone/bot_commands/bot.cpp b/zone/bot_commands/bot.cpp index ba0ae10dc..da2352a19 100644 --- a/zone/bot_commands/bot.cpp +++ b/zone/bot_commands/bot.cpp @@ -63,7 +63,9 @@ void bot_command_camp(Client *c, const Seperator *sep) ++campCount; } - c->Message(Chat::White, "%i of your bots have been camped.", campCount); + if (campCount) { + c->Message(Chat::White, "%i of your bots have been camped.", campCount); + } } void bot_command_clone(Client *c, const Seperator *sep)