mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Fix AutoDig mining timing
This commit is contained in:
parent
6331478e30
commit
b74364d465
10 changed files with 1576 additions and 899 deletions
|
|
@ -394,6 +394,24 @@ namespace MinecraftClient {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Apply Efficiency enchantment speed when AutoDig computes mining time. Disable this for strict anti-cheat compatibility..
|
||||
/// </summary>
|
||||
internal static string ChatBot_AutoDig_Apply_Efficiency_Enchantments {
|
||||
get {
|
||||
return ResourceManager.GetString("ChatBot.AutoDig.Apply_Efficiency_Enchantments", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Apply Haste and Conduit Power speed effects when AutoDig computes mining time. Disable this for strict anti-cheat compatibility..
|
||||
/// </summary>
|
||||
internal static string ChatBot_AutoDig_Apply_Haste_Effects {
|
||||
get {
|
||||
return ResourceManager.GetString("ChatBot.AutoDig.Apply_Haste_Effects", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Mining a block for more than "Dig_Timeout" seconds will be considered a timeout..
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -242,6 +242,12 @@ For the naming of the block, please see https://mccteam.github.io/r/block/#L15</
|
|||
<data name="ChatBot.AutoDig.Auto_Tool_Switch" xml:space="preserve">
|
||||
<value>Automatically switch to the appropriate tool.</value>
|
||||
</data>
|
||||
<data name="ChatBot.AutoDig.Apply_Efficiency_Enchantments" xml:space="preserve">
|
||||
<value>Apply Efficiency enchantment speed when AutoDig computes mining time. Disable this for strict anti-cheat compatibility.</value>
|
||||
</data>
|
||||
<data name="ChatBot.AutoDig.Apply_Haste_Effects" xml:space="preserve">
|
||||
<value>Apply Haste and Conduit Power speed effects when AutoDig computes mining time. Disable this for strict anti-cheat compatibility.</value>
|
||||
</data>
|
||||
<data name="ChatBot.AutoDig.Dig_Timeout" xml:space="preserve">
|
||||
<value>Mining a block for more than "Dig_Timeout" seconds will be considered a timeout.</value>
|
||||
</data>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue