diff --git a/cfg/addons/yapb/conf/lang/de_lang.cfg b/cfg/addons/yapb/conf/lang/de_lang.cfg index cc16734..3ad0ace 100644 --- a/cfg/addons/yapb/conf/lang/de_lang.cfg +++ b/cfg/addons/yapb/conf/lang/de_lang.cfg @@ -1942,7 +1942,7 @@ Upper bound of random difficulty on bot creation. Only affects newly created bot Obere Grenze der zufälligen Schwierigkeit bei der Bot-Erstellung. Betrifft nur neu erstellte Bots. -1 bedeutet, dass nur yb_difficulty verwendet wird. [ORIGINAL] -Enables each bot balances own difficulty based kd-ratio of team. +Allows each bot to balance their own difficulty based kd-ratio of team. [TRANSLATED] Ermöglicht es jedem Bot, seine eigene Schwierigkeit auf Basis des KD-Verhältnisses des Teams auszugleichen. diff --git a/cfg/addons/yapb/conf/lang/ru_lang.cfg b/cfg/addons/yapb/conf/lang/ru_lang.cfg index c7bfc3f..bed8093 100644 --- a/cfg/addons/yapb/conf/lang/ru_lang.cfg +++ b/cfg/addons/yapb/conf/lang/ru_lang.cfg @@ -2174,7 +2174,7 @@ Upper bound of random difficulty on bot creation. Only affects newly created bot Верхняя граница случайной сложности при создании бота. Действует только на вновь созданных ботов. -1 означает, что используется только yb_difficulty. [ORIGINAL] -Enables each bot balances own difficulty based kd-ratio of team. +Allows each bot to balance their own difficulty based kd-ratio of team. [TRANSLATED] Позволяет каждому боту уравновесить собственную сложность на основе коэффициента убийств/смертей команды. diff --git a/cfg/addons/yapb/conf/yapb.cfg b/cfg/addons/yapb/conf/yapb.cfg index 1f97407..45c162a 100644 --- a/cfg/addons/yapb/conf/yapb.cfg +++ b/cfg/addons/yapb/conf/yapb.cfg @@ -447,7 +447,7 @@ yb_difficulty_min "-1" yb_difficulty_max "-1" // -// Enables each bot balances own difficulty based kd-ratio of team. +// Allows each bot to balance their own difficulty based kd-ratio of team. // --- // Default: "0", Min: "0", Max: "1" // diff --git a/src/manager.cpp b/src/manager.cpp index 8b16a56..38ac546 100644 --- a/src/manager.cpp +++ b/src/manager.cpp @@ -25,7 +25,7 @@ ConVar cv_difficulty ("yb_difficulty", "3", "All bots difficulty level. Changing ConVar cv_difficulty_min ("yb_difficulty_min", "-1", "Lower bound of random difficulty on bot creation. Only affects newly created bots. -1 means yb_difficulty only used.", true, -1.0f, 4.0f); ConVar cv_difficulty_max ("yb_difficulty_max", "-1", "Upper bound of random difficulty on bot creation. Only affects newly created bots. -1 means yb_difficulty only used.", true, -1.0f, 4.0f); -ConVar cv_difficulty_auto ("yb_difficulty_auto", "0", "Enables each bot balances own difficulty based kd-ratio of team.", true, 0.0f, 1.0f); +ConVar cv_difficulty_auto ("yb_difficulty_auto", "0", "Allows each bot to balance their own difficulty based kd-ratio of team.", true, 0.0f, 1.0f); ConVar cv_difficulty_auto_balance_interval ("yb_difficulty_auto_balance_interval", "30", "Interval in which bots will balance their difficulty.", true, 30.0f, 240.0f); ConVar cv_show_avatars ("yb_show_avatars", "1", "Enables or disables displaying bot avatars in front of their names in scoreboard. Note, that is currently you can see only avatars of your steam friends.");