mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2026-08-15 13:04:36 +00:00
Added a /tab command
This commit is contained in:
parent
a12ba29c45
commit
c8286f60c1
12 changed files with 729 additions and 2 deletions
|
|
@ -1111,6 +1111,9 @@ namespace MinecraftClient
|
|||
[TomlPrecedingComment("$Console.Minimap$")]
|
||||
public MinimapConfig Minimap = new();
|
||||
|
||||
[TomlPrecedingComment("$Console.TabList$")]
|
||||
public TabListConfig TabList = new();
|
||||
|
||||
public void OnSettingUpdate()
|
||||
{
|
||||
var backend = ConsoleIO.Backend;
|
||||
|
|
@ -1302,6 +1305,13 @@ namespace MinecraftClient
|
|||
Tui.MinimapControl.MinRefreshMs, Tui.MinimapControl.MaxRefreshMs);
|
||||
}
|
||||
}
|
||||
|
||||
[TomlDoNotInlineObject]
|
||||
public class TabListConfig
|
||||
{
|
||||
[TomlInlineComment("$Console.TabList.ShowTeams$")]
|
||||
public bool ShowTeams = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue