Formatted the code and removed logs from Auto Attack

This commit is contained in:
Anon 2026-06-04 11:42:41 +02:00
parent a4ff7ae438
commit c6ca3dc13d
117 changed files with 602 additions and 585 deletions

View file

@ -51,7 +51,7 @@ namespace MinecraftClient.Inventory
Count = count;
NBT = nbt;
}
public Item(ItemType itemType, int count, int data, Dictionary<string, object>? nbt) : this(itemType, count, nbt)
{
Data = data;
@ -134,8 +134,8 @@ namespace MinecraftClient.Inventory
{
object[] displayName = (object[])displayProperties["Lore"];
lores.AddRange(from string st in displayName
let str = ChatParser.ParseText(st.ToString())
select str);
let str = ChatParser.ParseText(st.ToString())
select str);
return lores.ToArray();
}
}

View file

@ -14,7 +14,7 @@ namespace MinecraftClient.Inventory.ItemPalettes
{
if (DictReverse.ContainsKey(entry.Value))
continue;
DictReverse.Add(entry.Value, entry.Key);
}