Skip to content

Commit

Permalink
Fixed Conquest offsets
Browse files Browse the repository at this point in the history
  • Loading branch information
alex193a committed Feb 18, 2016
1 parent 842a7cb commit 9ae565d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions SOSSE/ConquestEditingForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ namespace SOSSE
{
public partial class ConquestEditingForm : Form
{
private const int moneyOffset = 0x47A6C;
private const int itemVarietyOffset = 0x47A74;
private const int itemQuantityOffset = 0x46EF0;
private const int moneyOffset = 0x47FAC;
private const int itemVarietyOffset = 0x47FB4;
private const int itemQuantityOffset = 0x47430;
private long money;
private int currentItemQuantity;
private int totalItemShipped;
Expand Down
2 changes: 1 addition & 1 deletion SOSSE/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ private void enableButtons()
shipLogButton.Enabled = true;
balanceButton.Enabled = true;
blueprintButton.Enabled = false;
conquestButton.Enabled = false;
conquestButton.Enabled = true;
shopButton.Enabled = true;
animalButton.Enabled = false;
patternButton.Enabled = false;
Expand Down

0 comments on commit 9ae565d

Please sign in to comment.