diff options
author | tom-overton <tom.overton@outlook.com> | 2021-12-15 17:34:14 -0800 |
---|---|---|
committer | tom-overton <tom.overton@outlook.com> | 2021-12-15 17:34:14 -0800 |
commit | 65026e179ddbcab08393af7db0d99574f45d629f (patch) | |
tree | 412691b757e71e18f50de81bb38fbe873ab90a57 /src/com/dabomstew | |
parent | 71e01ff5c30af1912998e8e083a00565f7b6ae46 (diff) |
Gen 5: Fix crashing issue when trainer held items are enabled
Diffstat (limited to 'src/com/dabomstew')
-rw-r--r-- | src/com/dabomstew/pkrandom/constants/Gen5Constants.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/dabomstew/pkrandom/constants/Gen5Constants.java b/src/com/dabomstew/pkrandom/constants/Gen5Constants.java index 5f477fc..c99cc2a 100644 --- a/src/com/dabomstew/pkrandom/constants/Gen5Constants.java +++ b/src/com/dabomstew/pkrandom/constants/Gen5Constants.java @@ -404,6 +404,7 @@ public class Gen5Constants { map.put(Type.ELECTRIC, Items.electricGem);
map.put(Type.GRASS, Items.grassGem);
map.put(Type.ICE, Items.iceGem);
+ map.put(Type.FIGHTING, Items.fightingGem);
map.put(Type.POISON, Items.poisonGem);
map.put(Type.GROUND, Items.groundGem);
map.put(Type.FLYING, Items.flyingGem);
|