Skip to content

Commit

Permalink
Merge pull request #888 from rumickon/removeflagfix
Browse files Browse the repository at this point in the history
Fix removing flags
  • Loading branch information
Hidendra committed Feb 14, 2015
2 parents b761279 + c77a734 commit 8c5c4af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/com/griefcraft/model/Protection.java
Original file line number Diff line number Diff line change
Expand Up @@ -497,7 +497,7 @@ public void removeFlag(Flag flag) {
return;
}

flags.remove(flag);
flags.remove(flag.getType());
this.modified = true;
}

Expand Down

0 comments on commit 8c5c4af

Please sign in to comment.