Skip to content

Commit

Permalink
Fixes #821
Browse files Browse the repository at this point in the history
  • Loading branch information
boy0001 committed Dec 15, 2017
1 parent 7e3bec1 commit 0dbb617
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ public BukkitMask getMask(final FawePlayer<Player> fp, final MaskType type) {
}
if (isAllowed) {
final CuboidArea area = residence.getAreaArray()[0];
final Location pos1 = area.getHighLoc();
final Location pos2 = area.getLowLoc();
final Location pos1 = area.getLowLoc();
final Location pos2 = area.getHighLoc();
final ClaimedResidence finalResidence = residence;
return new BukkitMask(pos1, pos2) {
@Override
Expand Down

0 comments on commit 0dbb617

Please sign in to comment.