mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Implemented effects support, as a command, chat notification and added in TUI mode
This commit is contained in:
parent
a7a3566756
commit
f6446b198d
15 changed files with 728 additions and 15 deletions
|
|
@ -1843,16 +1843,25 @@ namespace MinecraftClient {
|
|||
/// <summary>
|
||||
/// Looks up a localized string similar to Show inventory layout as ASCII art in inventory command..
|
||||
/// </summary>
|
||||
internal static string Main_Advanced_show_inventory_layout {
|
||||
get {
|
||||
return ResourceManager.GetString("Main.Advanced.show_inventory_layout", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to System messages for server ops..
|
||||
/// </summary>
|
||||
internal static string Main_Advanced_show_system_messages {
|
||||
internal static string Main_Advanced_show_inventory_layout {
|
||||
get {
|
||||
return ResourceManager.GetString("Main.Advanced.show_inventory_layout", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Show full effect names and levels in the TUI status bar instead of compact effect icons only..
|
||||
/// </summary>
|
||||
internal static string Main_Advanced_show_effect_names_in_tui {
|
||||
get {
|
||||
return ResourceManager.GetString("Main.Advanced.show_effect_names_in_tui", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to System messages for server ops..
|
||||
/// </summary>
|
||||
internal static string Main_Advanced_show_system_messages {
|
||||
get {
|
||||
return ResourceManager.GetString("Main.Advanced.show_system_messages", resourceCulture);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -705,6 +705,9 @@ Usage examples: "/tell <mybot> connect Server1", "/connect Server2"</value
|
|||
<data name="Main.Advanced.show_inventory_layout" xml:space="preserve">
|
||||
<value>Show inventory layout as ASCII art in inventory command.</value>
|
||||
</data>
|
||||
<data name="Main.Advanced.show_effect_names_in_tui" xml:space="preserve">
|
||||
<value>Show full effect names and levels in the TUI status bar instead of compact effect icons only.</value>
|
||||
</data>
|
||||
<data name="Main.Advanced.show_system_messages" xml:space="preserve">
|
||||
<value>System messages for server ops.</value>
|
||||
</data>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue