Core/Items: Implement azerite essences
Port From (https://github.com/TrinityCore/TrinityCore/commit/ec9d624aec9e0a39b1bcee7d4077f46be358faad)
This commit is contained in:
@@ -160,6 +160,11 @@ namespace Game.Entities
|
||||
return _values.IndexOf(value);
|
||||
}
|
||||
|
||||
public int FindIndexIf(Predicate<T> blah)
|
||||
{
|
||||
return _values.FindIndex(blah);
|
||||
}
|
||||
|
||||
public bool HasChanged(int index)
|
||||
{
|
||||
return (_updateMask[index / 32] & (1 << (index % 32))) != 0;
|
||||
|
||||
Reference in New Issue
Block a user