Implemented effects support, as a command, chat notification and added in TUI mode

This commit is contained in:
Anon 2026-03-27 15:47:27 +01:00
parent a7a3566756
commit f6446b198d
15 changed files with 728 additions and 15 deletions

View file

@ -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);
}

View file

@ -705,6 +705,9 @@ Usage examples: "/tell &lt;mybot&gt; 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>