Fixed crash with equipmentset

This commit is contained in:
hondacrx
2021-04-22 09:50:39 -04:00
parent 36040abe27
commit e4a5dbb0ba
2 changed files with 6 additions and 10 deletions
+3 -3
View File
@@ -496,9 +496,9 @@ namespace Game.Entities
public int AssignedSpecIndex = -1; // Index of character specialization that this set is automatically equipped for
public string SetName = "";
public string SetIcon = "";
public Array<ObjectGuid> Pieces = new(EquipmentSlot.End);
public Array<int> Appearances = new(EquipmentSlot.End); // ItemModifiedAppearanceID
public Array<int> Enchants = new(2); // SpellItemEnchantmentID
public ObjectGuid[] Pieces = new ObjectGuid[EquipmentSlot.End];
public int[] Appearances = new int[EquipmentSlot.End]; // ItemModifiedAppearanceID
public int[] Enchants = new int[2]; // SpellItemEnchantmentID
public int Unknown901_1;
public int Unknown901_2;
}