diff options
Diffstat (limited to 'src/com/dabomstew/pkrandom/romhandlers/Gen5RomHandler.java')
-rwxr-xr-x | src/com/dabomstew/pkrandom/romhandlers/Gen5RomHandler.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/dabomstew/pkrandom/romhandlers/Gen5RomHandler.java b/src/com/dabomstew/pkrandom/romhandlers/Gen5RomHandler.java index cec0049..2fa91cb 100755 --- a/src/com/dabomstew/pkrandom/romhandlers/Gen5RomHandler.java +++ b/src/com/dabomstew/pkrandom/romhandlers/Gen5RomHandler.java @@ -556,6 +556,7 @@ public class Gen5RomHandler extends AbstractDSRomHandler { moves[i].pp = moveData[5] & 0xFF;
moves[i].type = Gen5Constants.typeTable[moveData[0] & 0xFF];
moves[i].category = Gen5Constants.moveCategoryIndices[moveData[2] & 0xFF];
+ moves[i].priority = moveData[6];
if (i == Moves.swift) {
perfectAccuracy = (int)moves[i].hitratio;
|