Fix roleIds IndexOutOfRangeException
This commit is contained in:
parent
ec7db3384d
commit
092fd8df28
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ internal class FormationModel
|
||||||
|
|
||||||
public void Set(int[] roleIds)
|
public void Set(int[] roleIds)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < RoleIds.Length; i++)
|
for (int i = 0; i < roleIds.Length; i++)
|
||||||
{
|
{
|
||||||
RoleIds[i] = roleIds[i];
|
RoleIds[i] = roleIds[i];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue