diff --git a/cfg/addons/yapb/conf/lang/de_lang.cfg b/cfg/addons/yapb/conf/lang/de_lang.cfg index 51c5545..94d95ad 100644 --- a/cfg/addons/yapb/conf/lang/de_lang.cfg +++ b/cfg/addons/yapb/conf/lang/de_lang.cfg @@ -866,7 +866,7 @@ All nodes has been saved and written to disk. Alle Knoten wurden gespeichert und auf die Festplatte geschrieben. [ORIGINAL] -Could not save save nodes to disk. Graph check has failed. +Could not save nodes to disk. Graph check has failed. [TRANSLATED] Die Knoten konnten nicht auf die Festplatte geschrieben werden. Die Überprüfung des Graphen ist fehlgeschlagen. @@ -1148,10 +1148,10 @@ Unable to use graph edit commands without setting graph editor player. Please us Befehle zur Graph-Bearbeitung können nicht verwendet werden, ohne dass der Spieler für den Graph-Editor konfiguriert ist. Bitte verwenden Sie "graph acquire_editor", um die Berechtigung für die Graph-Bearbeitung zu erhalten. [ORIGINAL] -Sorry, unable to upload graph file that contains errors. Please type "wp check" to verify graph consistency. +Sorry, unable to upload graph file that contains errors. Please type "graph check" to verify graph consistency. [TRANSLATED] -Entschuldigung, es kann kein fehlerhafter Graph hochladen werden. Bitte geben Sie "wp check" ein, um die Konsistenz des Graphen zu überprüfen. +Entschuldigung, es kann kein fehlerhafter Graph hochladen werden. Bitte geben Sie "graph check" ein, um die Konsistenz des Graphen zu überprüfen. [ORIGINAL] Incorrect usage of "%s %s %s" command. Correct usage is: @@ -1804,7 +1804,7 @@ Binds specified key for opening bots menu. Bindet die angegebene Taste zum Öffnen des Bots-Menüs. [ORIGINAL] -Specifies comma separated list of bot cvars, that will not be overriten by config on changelevel. +Specifies comma separated list of bot cvars, that will not be overwritten by config on changelevel. [TRANSLATED] Gibt eine durch Komma getrennte Liste von Bot-Variablen an, die nicht von der Konfiguration bei einem Mapwechsel überschrieben werden. diff --git a/cfg/addons/yapb/conf/lang/ru_lang.cfg b/cfg/addons/yapb/conf/lang/ru_lang.cfg index 29da1da..829913f 100644 --- a/cfg/addons/yapb/conf/lang/ru_lang.cfg +++ b/cfg/addons/yapb/conf/lang/ru_lang.cfg @@ -1016,7 +1016,7 @@ All nodes has been saved and written to disk. *** Пожалуйста, не забудьте поделиться своей работой, введя "%s g upload". Спасибо! *** [ORIGINAL] -Could not save save nodes to disk. Graph check has failed. +Could not save nodes to disk. Graph check has failed. [TRANSLATED] Невозможно сохранить точки на диск. Проверка графов провалена. @@ -1340,10 +1340,10 @@ Unable to use graph edit commands without setting graph editor player. Please us Heвoзмoжнo иcпoльзoвaть кoмaнды peдaктиpoвaния гpaфoв бeз пpaв. Пoжaлyйcтa нaпишитe "graph acquire_editor" чтoбы пoлyчить иx. [ORIGINAL] -Sorry, unable to upload graph file that contains errors. Please type "wp check" to verify graph consistency. +Sorry, unable to upload graph file that contains errors. Please type "graph check" to verify graph consistency. [TRANSLATED] -Heвoзмoжнo зaгpyзить graph фaйл c oшибкaми. Haпишитe "wp check" чтoбы пpoвepить eгo. +Heвoзмoжнo зaгpyзить graph фaйл c oшибкaми. Haпишитe "graph check" чтoбы пpoвepить eгo. [ORIGINAL] Incorrect usage of "%s %s %s" command. Correct usage is: @@ -2116,7 +2116,7 @@ Binds specified key for opening bots menu. Привязывает указанную клавишу для открытия меню ботов. [ORIGINAL] -Specifies comma separated list of bot cvars, that will not be overriten by config on changelevel. +Specifies comma separated list of bot cvars, that will not be overwritten by config on changelevel. [TRANSLATED] Задаёт список кваров бота разделённых запятой, которые не будут перезаписаны конфигом при изменении уровня. diff --git a/inc/analyze.h b/inc/analyze.h index 6ac081a..8cc97a1 100644 --- a/inc/analyze.h +++ b/inc/analyze.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/config.h b/inc/config.h index b4ff66f..9c54b92 100644 --- a/inc/config.h +++ b/inc/config.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/control.h b/inc/control.h index 41a6d75..dfe4e82 100644 --- a/inc/control.h +++ b/inc/control.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/engine.h b/inc/engine.h index 0a14cb4..ef2bfd7 100644 --- a/inc/engine.h +++ b/inc/engine.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/graph.h b/inc/graph.h index 0f0dd07..874d823 100644 --- a/inc/graph.h +++ b/inc/graph.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/manager.h b/inc/manager.h index 15cd8bc..130f81f 100644 --- a/inc/manager.h +++ b/inc/manager.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/message.h b/inc/message.h index d154ea9..f830581 100644 --- a/inc/message.h +++ b/inc/message.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/module.h b/inc/module.h index b167806..834434a 100644 --- a/inc/module.h +++ b/inc/module.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/planner.h b/inc/planner.h index cd8894d..53a454e 100644 --- a/inc/planner.h +++ b/inc/planner.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/practice.h b/inc/practice.h index 81822e3..bdf2ade 100644 --- a/inc/practice.h +++ b/inc/practice.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/product.h b/inc/product.h index 1b4eca7..20b46dd 100644 --- a/inc/product.h +++ b/inc/product.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/sounds.h b/inc/sounds.h index 5b6ce6f..19263d1 100644 --- a/inc/sounds.h +++ b/inc/sounds.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/storage.h b/inc/storage.h index 3338e25..4f835d0 100644 --- a/inc/storage.h +++ b/inc/storage.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/support.h b/inc/support.h index c4855b4..399dda1 100644 --- a/inc/support.h +++ b/inc/support.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/version.h b/inc/version.h index c5143da..e12253a 100644 --- a/inc/version.h +++ b/inc/version.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/version.h.in b/inc/version.h.in index bd2185b..01047c4 100644 --- a/inc/version.h.in +++ b/inc/version.h.in @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/vistable.h b/inc/vistable.h index 6fe55ab..ca00df1 100644 --- a/inc/vistable.h +++ b/inc/vistable.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/inc/yapb.h b/inc/yapb.h index 0e9effd..0a1e112 100644 --- a/inc/yapb.h +++ b/inc/yapb.h @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/analyze.cpp b/src/analyze.cpp index 69254d1..1e71411 100644 --- a/src/analyze.cpp +++ b/src/analyze.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/botlib.cpp b/src/botlib.cpp index 546ce3c..108b0a7 100644 --- a/src/botlib.cpp +++ b/src/botlib.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // @@ -1554,7 +1554,6 @@ void Bot::syncUpdatePredictedIndex () { }; if (!m_predictLock.tryLock ()) { - wipePredict (); return; // allow only single instance of search per-bot } ScopedUnlock unlock (m_predictLock); @@ -1572,6 +1571,7 @@ void Bot::syncUpdatePredictedIndex () { int bestIndex = kInvalidNodeIndex; if (destIndex == kInvalidNodeIndex) { + wipePredict (); return; } int pathLength = 0; @@ -3167,7 +3167,7 @@ void Bot::takeDamage (edict_t *inflictor, int damage, int armor, int bits) { if (util.isPlayer (inflictor) || (cv_attack_monsters.bool_ () && util.isMonster (inflictor))) { if (!util.isMonster (inflictor) && cv_tkpunish.bool_ () && game.getTeam (inflictor) == m_team && !util.isFakeClient (inflictor)) { - // alright, die you teamkiller!!! + // alright, die you team killer!!! m_actualReactionTime = 0.0f; m_seeEnemyTime = game.time (); m_enemy = inflictor; @@ -3340,7 +3340,7 @@ void Bot::pushChatMessage (int type, bool isTeamSay) { } void Bot::dropWeaponForUser (edict_t *user, bool discardC4) { - // this function, asks bot to discard his current primary weapon (or c4) to the user that requsted it with /drop* + // this function, asks bot to discard his current primary weapon (or c4) to the user that requested it with /drop* // command, very useful, when i'm don't have money to buy anything... ) if (util.isAlive (user) && m_moneyAmount >= 2000 && hasPrimaryWeapon () && user->v.origin.distance (pev->origin) <= 450.0f) { diff --git a/src/chatlib.cpp b/src/chatlib.cpp index 37d5746..b87c966 100644 --- a/src/chatlib.cpp +++ b/src/chatlib.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/combat.cpp b/src/combat.cpp index 4d86e94..0be473c 100644 --- a/src/combat.cpp +++ b/src/combat.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/config.cpp b/src/config.cpp index 42612cd..b7f4311 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // @@ -8,7 +8,7 @@ #include ConVar cv_bind_menu_key ("yb_bind_menu_key", "=", "Binds specified key for opening bots menu.", false); -ConVar cv_ignore_cvars_on_changelevel ("yb_ignore_cvars_on_changelevel", "yb_quota,yb_autovacate", "Specifies comma separated list of bot cvars, that will not be overriten by config on changelevel.", false); +ConVar cv_ignore_cvars_on_changelevel ("yb_ignore_cvars_on_changelevel", "yb_quota,yb_autovacate", "Specifies comma separated list of bot cvars, that will not be overwritten by config on changelevel.", false); BotConfig::BotConfig () { m_chat.resize (Chat::Count); diff --git a/src/control.cpp b/src/control.cpp index 207cbc8..19da686 100644 --- a/src/control.cpp +++ b/src/control.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // @@ -31,7 +31,7 @@ int BotControl::cmdAddBot () { m_args.set (team, "1"); } - // if highskilled bot is requsted set personality to rusher and maxout difficulty + // if high-skilled bot is requested set personality to rusher and max-out difficulty if (strValue (alias).endsWith ("_hs")) { m_args.set (difficulty, "4"); m_args.set (personality, "1"); @@ -513,7 +513,7 @@ int BotControl::cmdNodeSave () { msg ("All nodes has been saved and written to disk.\n*** Please don't forget to share your work by typing \"%s g upload\". Thank you! ***", product.cmdPri); } else { - msg ("Could not save save nodes to disk. Graph check has failed."); + msg ("Could not save nodes to disk. Graph check has failed."); } } return BotCommandResult::Handled; @@ -780,7 +780,7 @@ int BotControl::cmdNodeUpload () { // do not allow to upload bad graph if (!graph.checkNodes (false)) { - msg ("Sorry, unable to upload graph file that contains errors. Please type \"wp check\" to verify graph consistency."); + msg ("Sorry, unable to upload graph file that contains errors. Please type \"graph check\" to verify graph consistency."); return BotCommandResult::Handled; } @@ -835,7 +835,7 @@ int BotControl::cmdNodeIterateCamp () { // turn graph on graph.setEditFlag (GraphEdit::On); - // get the option descriping operation + // get the option describing operation auto op = strValue (option); if (op != "begin" && op != "end" && op != "next") { diff --git a/src/engine.cpp b/src/engine.cpp index e5eb5af..4720c35 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/entities.cpp b/src/entities.cpp index 636d03e..293de68 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/graph.cpp b/src/graph.cpp index c88bcc5..4875575 100644 --- a/src/graph.cpp +++ b/src/graph.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/linkage.cpp b/src/linkage.cpp index 48c74ba..ac3fe3e 100644 --- a/src/linkage.cpp +++ b/src/linkage.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // @@ -789,7 +789,7 @@ CR_LINKAGE_C int GetEngineFunctions_Post (enginefuncs_t *table, int *) { } CR_EXPORT int Meta_Query (char *, plugin_info_t **pPlugInfo, mutil_funcs_t *pMetaUtilFuncs) { - // this function is the first function ever called by metamod in the plugin DLL. Its purpose + // this function is the second function called by metamod in the plugin DLL. Its purpose // is for metamod to retrieve basic information about the plugin, such as its meta-interface // version, for ensuring compatibility with the current version of the running metamod. diff --git a/src/manager.cpp b/src/manager.cpp index 837adbf..37928de 100644 --- a/src/manager.cpp +++ b/src/manager.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/message.cpp b/src/message.cpp index 37452c3..c2ef03d 100644 --- a/src/message.cpp +++ b/src/message.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/module.cpp b/src/module.cpp index 08ef862..f5741db 100644 --- a/src/module.cpp +++ b/src/module.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/navigate.cpp b/src/navigate.cpp index 7b0e84b..555e220 100644 --- a/src/navigate.cpp +++ b/src/navigate.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/planner.cpp b/src/planner.cpp index dfd5c27..ec2cbd2 100644 --- a/src/planner.cpp +++ b/src/planner.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/practice.cpp b/src/practice.cpp index c0adb70..411f9f4 100644 --- a/src/practice.cpp +++ b/src/practice.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/sounds.cpp b/src/sounds.cpp index 42e3ecb..6e66c20 100644 --- a/src/sounds.cpp +++ b/src/sounds.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/storage.cpp b/src/storage.cpp index 31bdb05..7f96b81 100644 --- a/src/storage.cpp +++ b/src/storage.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/support.cpp b/src/support.cpp index 7c67a93..0ad3a01 100644 --- a/src/support.cpp +++ b/src/support.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/tasks.cpp b/src/tasks.cpp index c76a6ba..cdb4237 100644 --- a/src/tasks.cpp +++ b/src/tasks.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/vision.cpp b/src/vision.cpp index e1072b5..19f4c9d 100644 --- a/src/vision.cpp +++ b/src/vision.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT // diff --git a/src/vistable.cpp b/src/vistable.cpp index 04cd88f..36bc543 100644 --- a/src/vistable.cpp +++ b/src/vistable.cpp @@ -1,6 +1,6 @@ // -// YaPB - Counter-Strike Bot based on PODBot by Markus Klinge. -// Copyright © 2004-2023 YaPB Project . +// YaPB, based on PODBot by Markus Klinge ("CountFloyd"). +// Copyright © YaPB Project Developers . // // SPDX-License-Identifier: MIT //