Skip to content

Commit

Permalink
Fixed NPC offsets
Browse files Browse the repository at this point in the history
  • Loading branch information
alex193a committed Feb 20, 2016
1 parent 8eea010 commit 475497b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions SOSSE/MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ private void enableButtons()
objectButton.Enabled = true;
shipLogButton.Enabled = true;
balanceButton.Enabled = true;
blueprintButton.Enabled = true;
blueprintButton.Enabled = false;
conquestButton.Enabled = true;
shopButton.Enabled = true;
animalButton.Enabled = false;
patternButton.Enabled = false;
recipeButton.Enabled = true;
vendorButton.Enabled = true;
npcButton.Enabled = false;
npcButton.Enabled = true;
generalButton.Enabled = true;
eventButton.Enabled = true;
}
Expand Down
2 changes: 1 addition & 1 deletion SOSSE/NPCEditingForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace SOSSE
{
public partial class NPCEditingForm : Form
{
private int npcOffset = 0x118; // may be misaligned, though.
private int npcOffset = 0x110; // may be misaligned, though.
private int currentNPC;

public const int MaxNPC = 33;
Expand Down
2 changes: 1 addition & 1 deletion SOSSE/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.7.9")]
[assembly: AssemblyVersion("1.8.1")]
[assembly: AssemblyFileVersion("1.0.0.0")]
2 changes: 1 addition & 1 deletion SOSSE/SOSSE.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.7.9.%2a</ApplicationVersion>
<ApplicationVersion>1.8.1.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
</PropertyGroup>
Expand Down

0 comments on commit 475497b

Please sign in to comment.