mirror of
https://github.com/JustArchiNET/ArchiSteamFarm.git
synced 2026-01-06 17:10:13 +00:00
Add TargetBotNotConnected string (#919)
* Add TargetBotNotConnected string * Fix encoding
This commit is contained in:
committed by
Łukasz Domeradzki
parent
3417c57ec7
commit
526a38a840
@@ -632,7 +632,7 @@ namespace ArchiSteamFarm {
|
||||
}
|
||||
|
||||
if (!targetBot.IsConnectedAndLoggedOn) {
|
||||
return FormatBotResponse(Strings.BotNotConnected);
|
||||
return FormatBotResponse(Strings.TargetBotNotConnected);
|
||||
}
|
||||
|
||||
(bool success, string output) = await Bot.Actions.SendTradeOffer(appID, contextID, targetBot.SteamID).ConfigureAwait(false);
|
||||
@@ -2128,7 +2128,7 @@ namespace ArchiSteamFarm {
|
||||
}
|
||||
|
||||
if (!targetBot.IsConnectedAndLoggedOn) {
|
||||
return FormatBotResponse(Strings.BotNotConnected);
|
||||
return FormatBotResponse(Strings.TargetBotNotConnected);
|
||||
}
|
||||
|
||||
if (targetBot.SteamID == Bot.SteamID) {
|
||||
@@ -2171,7 +2171,7 @@ namespace ArchiSteamFarm {
|
||||
}
|
||||
|
||||
if (!targetBot.IsConnectedAndLoggedOn) {
|
||||
return FormatBotResponse(Strings.BotNotConnected);
|
||||
return FormatBotResponse(Strings.TargetBotNotConnected);
|
||||
}
|
||||
|
||||
if (targetBot.SteamID == Bot.SteamID) {
|
||||
|
||||
345
ArchiSteamFarm/Localization/Strings.Designer.cs
generated
345
ArchiSteamFarm/Localization/Strings.Designer.cs
generated
File diff suppressed because it is too large
Load Diff
@@ -658,4 +658,7 @@ StackTrace:
|
||||
<value>Workaround for {0} bug has been triggered.</value>
|
||||
<comment>{0} will be replaced by the bug's name provided by ASF</comment>
|
||||
</data>
|
||||
<data name="TargetBotNotConnected" xml:space="preserve">
|
||||
<value>Target bot instance is not connected!</value>
|
||||
</data>
|
||||
</root>
|
||||
Reference in New Issue
Block a user