mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 14:41:28 +00:00
[Bots] Correct camp count on ^camp (#4650)
* Correct camp count on ^camp * Update bot.cpp --------- Co-authored-by: Alex King <89047260+Kinglykrab@users.noreply.github.com>
This commit is contained in:
parent
0dde51f518
commit
1650efa787
@ -56,15 +56,12 @@ void bot_command_camp(Client *c, const Seperator *sep)
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint16 camp_count;
|
|
||||||
|
|
||||||
for (auto bot_iter : sbl) {
|
for (auto bot_iter : sbl) {
|
||||||
bot_iter->Camp();
|
bot_iter->Camp();
|
||||||
++camp_count;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (camp_count) {
|
if (!sbl.empty()) {
|
||||||
c->Message(Chat::White, "%i of your bots have been camped.", camp_count);
|
c->Message(Chat::White, fmt::format("{} of your bots have been camped.", sbl.size()).c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user