Skip to content

Commit

Permalink
Fix event flag retrieval
Browse files Browse the repository at this point in the history
Thanks CaliberDR!
  • Loading branch information
kwsch committed Aug 4, 2016
1 parent 3f5d8fa commit 0dd6b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Saves/SaveFile.cs
Expand Up @@ -235,7 +235,7 @@ public ushort[] EventConsts

ushort[] Constants = new ushort[EventConstMax];
for (int i = 0; i < Constants.Length; i++)
Constants[i] = BitConverter.ToUInt16(Data, EventConst + i);
Constants[i] = BitConverter.ToUInt16(Data, EventConst + i * 2);
return Constants;
}
set
Expand Down

0 comments on commit 0dd6b05

Please sign in to comment.