Skip to content

Commit

Permalink
XY: Add Snorlax to the Static Encounter editor (kwsch#522)
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-overton authored May 29, 2022
1 parent 94f23bb commit 32ad859
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pk3DS/Subforms/Gen6/StaticEncounterEditor6.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ public StaticEncounterEditor6()

private readonly string FieldPath = Path.Combine(Main.RomFSPath, "DllField.cro");
private byte[] FieldData;
private readonly int fieldOffset = Main.Config.ORAS ? 0xF1B20 : 0xEE478;
private readonly int fieldOffset = Main.Config.ORAS ? 0xF1B20 : 0xEE46C;
private const int fieldSize = 0xC;
private readonly int count = Main.Config.ORAS ? 0x3B : 0xC;
private readonly int count = Main.Config.ORAS ? 0x3B : 0xD;
private EncounterStatic6[] EncounterData;
private readonly string[] itemlist = Main.Config.GetText(TextName.ItemNames);
private readonly string[] specieslist = Main.Config.GetText(TextName.SpeciesNames);
Expand Down

0 comments on commit 32ad859

Please sign in to comment.