mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Support specifying the digging duration
This commit is contained in:
parent
338f534239
commit
50dd5a3ba3
4 changed files with 84 additions and 18 deletions
|
|
@ -2704,6 +2704,15 @@ namespace MinecraftClient {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Cancel mining the block located at {0}..
|
||||
/// </summary>
|
||||
internal static string cmd_dig_cancel {
|
||||
get {
|
||||
return ResourceManager.GetString("cmd.dig.cancel", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Attempt to break a block.
|
||||
/// </summary>
|
||||
|
|
@ -2722,6 +2731,15 @@ namespace MinecraftClient {
|
|||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Mining of the block located at {0} ends..
|
||||
/// </summary>
|
||||
internal static string cmd_dig_end {
|
||||
get {
|
||||
return ResourceManager.GetString("cmd.dig.end", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Failed to start digging block..
|
||||
/// </summary>
|
||||
|
|
|
|||
|
|
@ -2028,4 +2028,10 @@ Logging in...</value>
|
|||
<data name="proxy.connected" xml:space="preserve">
|
||||
<value>Connected to proxy {0}:{1}</value>
|
||||
</data>
|
||||
<data name="cmd.dig.end" xml:space="preserve">
|
||||
<value>Mining of the block located at {0} ends.</value>
|
||||
</data>
|
||||
<data name="cmd.dig.cancel" xml:space="preserve">
|
||||
<value>Cancel mining the block located at {0}.</value>
|
||||
</data>
|
||||
</root>
|
||||
Loading…
Add table
Add a link
Reference in a new issue