Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
bgsamm committed Feb 5, 2022
1 parent 0612772 commit 27b1833
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 17 deletions.
6 changes: 3 additions & 3 deletions PBRHex Setup/PBRHex Setup.vdproj
Original file line number Diff line number Diff line change
Expand Up @@ -3141,15 +3141,15 @@
{
"Name" = "8:Microsoft Visual Studio"
"ProductName" = "8:PBRHex"
"ProductCode" = "8:{474EBDA2-7043-4C36-9B60-AC8E24CC2659}"
"PackageCode" = "8:{2D7468B5-FAF1-45C3-B01F-C5E61CC1E8DD}"
"ProductCode" = "8:{343B4450-5F9D-4AF3-8DA0-3FA3A1F3B6F6}"
"PackageCode" = "8:{0BEE662A-A756-4A71-8FF2-A623EBB38CC8}"
"UpgradeCode" = "8:{D48A0932-A217-4C66-91CB-5BF77D165DBB}"
"AspNetVersion" = "8:2.0.50727.0"
"RestartWWWService" = "11:FALSE"
"RemovePreviousVersions" = "11:TRUE"
"DetectNewerInstalledVersion" = "11:TRUE"
"InstallAllUsers" = "11:FALSE"
"ProductVersion" = "8:1.0.3"
"ProductVersion" = "8:1.1.0"
"Manufacturer" = "8:PBRHex"
"ARPHELPTELEPHONE" = "8:"
"ARPHELPLINK" = "8:"
Expand Down
14 changes: 0 additions & 14 deletions PBRHex/Tables/DexTable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,6 @@ public static int GetMaxDexNum() {
return max;
}

// I'd really like to do everything in dex #s, but b/c of how the
// game handles things, I'll have to wait until I can patch the DOL
/// <returns>
/// The index of the given Pokemon in the dex table.
/// This is the number used by the game to identify Pokemon.
/// </returns>
//public static int GetIndex(Pokemon mon) {
// for (int i = 0; i < Count; i++) {
// if (GetDexNum(i) == mon.DexNum && GetFormIndex(i) == mon.FormIndex)
// return i;
// }
// throw new ArgumentOutOfRangeException();
//}

public static Pokemon GetMonByIndex(int index) {
int dexNo = GetDexNum(index),
formID = GetFormIndex(index);
Expand Down

0 comments on commit 27b1833

Please sign in to comment.