fix: not using NativeArrayExtensions.IndexOf as this API changed in 21.0-pre.2 (#2303)

fix: not using NativeArrayExtensions.IndexOf as this API changed in 2.1.0-pre.2

Co-authored-by: ashwini <36935028+ashwinimurt@users.noreply.github.com>
Co-authored-by: Fatih Mar <mfatihmar@gmail.com>
This commit is contained in:
Jeffrey Rainy 2022-11-10 12:24:35 -05:00 коммит произвёл GitHub
Родитель 3716e27656
Коммит bbda510af2
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -413,7 +413,7 @@ namespace Unity.Netcode
/// <inheritdoc />
public bool Contains(T item)
{
int index = NativeArrayExtensions.IndexOf(m_List, item);
int index = m_List.IndexOf(item);
return index != -1;
}
@ -426,7 +426,7 @@ namespace Unity.Netcode
throw new InvalidOperationException("Client is not allowed to write to this NetworkList");
}
int index = NativeArrayExtensions.IndexOf(m_List, item);
int index = m_List.IndexOf(item);
if (index == -1)
{
return false;