From 5fcfb3df408e1010c657cd5e4f6c410bd1894383 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=BB=D0=B0=D0=B4=D0=B8=D1=81=D0=BB=D0=B0=D0=B2=20?= =?UTF-8?q?=D0=A1=D1=83=D1=85=D0=BE=D0=B2?= <22411953+Vladislav4KZ@users.noreply.github.com> Date: Tue, 22 Aug 2023 17:59:23 +0600 Subject: [PATCH] fix: typo in comment --- src/botlib.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/botlib.cpp b/src/botlib.cpp index 57ee692..4932261 100644 --- a/src/botlib.cpp +++ b/src/botlib.cpp @@ -1170,7 +1170,7 @@ int Bot::pickBestWeapon (Array &vec, int moneySave) { for (const auto &w : vec) { const auto &weapon = tab[w]; - // if weaзщт have enough money for weapon buy it + // if we have enough money for weapon, buy it if (weapon.price + moneySave < m_moneyAmount + rg.get (50, 200) && rg.chance (chance)) { return w; }