Skip to content

Commit

Permalink
Fixed a bug with Hou's code that made the name index iteration always…
Browse files Browse the repository at this point in the history
… break.
  • Loading branch information
codecat committed Oct 20, 2012
1 parent dd9a860 commit 1cc81f9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion User.cs
Original file line number Diff line number Diff line change
Expand Up @@ -645,9 +645,10 @@ public void NSCGON()
// Name index
for (int i = 0; i < columnUsers.Length; i++){
for (int j = 0; j < origColumnUsers.Length; j++){
if (origColumnUsers[j] == columnUsers[i])
if (origColumnUsers[j] == columnUsers[i]) {
ez.Write1((byte)j);
break;
}
}
}
// Score
Expand Down

0 comments on commit 1cc81f9

Please sign in to comment.