Editor: don't use border when applying mask

This commit is contained in:
Charles Dang 2015-12-20 13:22:54 +11:00
parent 96534c523d
commit d84445f4aa

View file

@ -271,7 +271,7 @@ editor_action_apply_mask* editor_action_apply_mask::clone() const
}
void editor_action_apply_mask::perform_without_undo(map_context& mc) const
{
mc.get_map().overlay(mask_, config(), 0, 0, true);
mc.get_map().overlay(mask_, config(), 0, 0, false);
mc.set_needs_terrain_rebuild();
}