Skip to content

Commit

Permalink
Merge pull request Dabomstew#23 from toddblove/master
Browse files Browse the repository at this point in the history
Update AbstractRomHandler.java
  • Loading branch information
Dabomstew authored Jul 6, 2016
2 parents fd405d2 + 77117e5 commit b398eab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1810,7 +1810,7 @@ public void orderDamagingMovesByDamage() {
Collections.shuffle(damagingMoves, random);

// Sort the damaging moves by power
damagingMoves.sort(new Comparator<Move>() {
Collections.sort(damagingMoves, new Comparator<Move>() {

@Override
public int compare(Move m1, Move m2) {
Expand Down

0 comments on commit b398eab

Please sign in to comment.