Skip to content

Commit

Permalink
* removed Bows fro weapon tab
Browse files Browse the repository at this point in the history
* added potion tab
* disabled high DPI again
  • Loading branch information
tolik518 committed Aug 7, 2024
1 parent d8669de commit 851e9c7
Show file tree
Hide file tree
Showing 5 changed files with 532 additions and 368 deletions.
6 changes: 3 additions & 3 deletions SoG_SGreader/DataReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,9 @@ public static Player ReadFromFile(string fileName, ITextBoxWrapper txtConsole)
playerObject.Potions = new List<Potion>(playerObject.PotionsEquipped);
for (int i = 0; i != playerObject.PotionsEquipped; i++)
{
playerObject.Potions.Add(new Potion
{
PotionID = readBinary.ReadInt32()
playerObject.Potions.Add(new Potion
{
PotionID = (SogItem)readBinary.ReadInt32()
});
}

Expand Down
Loading

0 comments on commit 851e9c7

Please sign in to comment.