fix: remove an unnecessary apostrophe in the description of yb_graph_auto_collect_db (grammar correction)

This commit is contained in:
Владислав Сухов 2024-02-10 16:00:14 +00:00
commit 19b50cadd2
3 changed files with 3 additions and 3 deletions

View file

@ -2264,7 +2264,7 @@ Maximum distance to draw graph nodes from editor viewport.
Максимальное расстояние отображения точек от области просмотра редактора. Максимальное расстояние отображения точек от области просмотра редактора.
[ORIGINAL] [ORIGINAL]
Allows bot's to exchange your graph files with graph database automatically. Allows bots to exchange your graph files with graph database automatically.
[TRANSLATED] [TRANSLATED]
Позволяет ботам автоматически обмениваться вашими graph файлами с базой графов. Позволяет ботам автоматически обмениваться вашими graph файлами с базой графов.

View file

@ -388,7 +388,7 @@ yb_graph_auto_save_count "15"
yb_graph_draw_distance "400" yb_graph_draw_distance "400"
// //
// Allows bot's to exchange your graph files with graph database automatically. // Allows bots to exchange your graph files with graph database automatically.
// --- // ---
// Default: "0", Min: "0", Max: "1" // Default: "0", Min: "0", Max: "1"
// //

View file

@ -12,7 +12,7 @@ ConVar cv_graph_url ("graph_url", product.download.chars (), "Specifies the URL
ConVar cv_graph_url_upload ("graph_url_upload", product.upload.chars (), "Specifies the URL to which bots will try to upload the graph file to database.", false, 0.0f, 0.0f); ConVar cv_graph_url_upload ("graph_url_upload", product.upload.chars (), "Specifies the URL to which bots will try to upload the graph file to database.", false, 0.0f, 0.0f);
ConVar cv_graph_auto_save_count ("graph_auto_save_count", "15", "Every N graph nodes placed on map, the graph will be saved automatically (without checks).", true, 0.0f, kMaxNodes); ConVar cv_graph_auto_save_count ("graph_auto_save_count", "15", "Every N graph nodes placed on map, the graph will be saved automatically (without checks).", true, 0.0f, kMaxNodes);
ConVar cv_graph_draw_distance ("graph_draw_distance", "400", "Maximum distance to draw graph nodes from editor viewport.", true, 64.0f, 3072.0f); ConVar cv_graph_draw_distance ("graph_draw_distance", "400", "Maximum distance to draw graph nodes from editor viewport.", true, 64.0f, 3072.0f);
ConVar cv_graph_auto_collect_db ("graph_auto_collect_db", "0", "Allows bot's to exchange your graph files with graph database automatically."); ConVar cv_graph_auto_collect_db ("graph_auto_collect_db", "0", "Allows bots to exchange your graph files with graph database automatically.");
void BotGraph::reset () { void BotGraph::reset () {
// this function initialize the graph structures.. // this function initialize the graph structures..