Skip to content

Commit

Permalink
Fixed custom drops without regions.
Browse files Browse the repository at this point in the history
  • Loading branch information
me4502 committed Dec 7, 2016
1 parent 0f9ee92 commit d6ab9db
Showing 1 changed file with 3 additions and 0 deletions.
Expand Up @@ -45,6 +45,9 @@ public List<String> getRegions() {

public void setRegions(List<String> regions) {
this.regions = regions;
if (this.regions.isEmpty()) {
this.regions = null;
}
}

public DropReward[] getRewards() {
Expand Down

0 comments on commit d6ab9db

Please sign in to comment.