Skip to content

Commit 4191868

Browse files
committed
- fixed a bug in Player.cs
1 parent e64e36c commit 4191868

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

D-OS Save Editor/MainWindow.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public partial class MainWindow
3131
private readonly string _defaultProfileDir = $"{Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)}{DirectorySeparatorChar}Larian Studios{DirectorySeparatorChar}Divinity Original Sin Enhanced Edition{DirectorySeparatorChar}PlayerProfiles";
3232
private enum BackupStatus { None, Current, Old, NoChecksum, NoImage }
3333

34-
public static string Version { get; } = "v1.5.1";
34+
public static string Version { get; } = "v1.5.2";
3535
private string _updateLink;
3636

3737
public MainWindow()

D-OS Save Editor/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,5 +51,5 @@
5151
// You can specify all the values or you can default the Build and Revision Numbers
5252
// by using the '*' as shown below:
5353
// [assembly: AssemblyVersion("1.0.*")]
54-
[assembly: AssemblyVersion("1.5.1.0")]
55-
[assembly: AssemblyFileVersion("1.5.1.0")]
54+
[assembly: AssemblyVersion("1.5.2.0")]
55+
[assembly: AssemblyFileVersion("1.5.2.0")]

D-OS Save Editor/savegame/Player.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ public Player DeepClone()
247247
player.Skills = new Dictionary<string, bool>(player.Skills);
248248
player.Attributes = new Dictionary<int, int>(player.Attributes);
249249
player.Abilities = new Dictionary<int, int>(player.Abilities);
250-
player.Talents = new Dictionary<int, long>(player.Talents);
250+
player.Talents = new Dictionary<int, uint>(player.Talents);
251251
player.Traits = new Dictionary<int, int>(player.Traits);
252252
player.Items = Items.Select(a => a.DeepClone()).ToArray();
253253
return player;

UpdateCheck

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
HandShake={ABCQWEZXCrtyfghvbnUIOJKLNM}
2-
LatestVersion={v1.5.1}
2+
LatestVersion={v1.5.2}
33
Link=linkStart{https://github.com/tmxkn1/D-OS-Save-Editor/releases}linkEnd
4-
Msg=msgStart{v1.5.1 is now available with a new feature: Talent editing. }msgEnd
4+
Msg=msgStart{v1.5.2 is now available with a new feature: Talent editing. }msgEnd

UpdateCheck1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
HandShake={ABCQWEZXCrtyfghvbnUIOJKLNM}
2-
LatestVersion={v1.5.1}
2+
LatestVersion={v1.5.2}
33
Link=linkStart{https://github.com/tmxkn1/D-OS-Save-Editor/releases}linkEnd
4-
Msg=msgStart{v1.5.1 is now available with a new feature: Talent editing. }msgEnd
4+
Msg=msgStart{v1.5.2 is now available with a new feature: Talent editing. }msgEnd

0 commit comments

Comments
 (0)