Skip to content

Commit

Permalink
fix show everything check
Browse files Browse the repository at this point in the history
  • Loading branch information
brnkhy committed Oct 4, 2016
1 parent bf630c2 commit 9595cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/MapzenGo/Models/Factories/LanduseFactory.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ protected override GameObject CreateLayer(Vector2d tileMercPos, List<JSONObject>
foreach (var geo in items.Where(x => Query(x)))
{
var kind = geo["properties"]["kind"].str.ConvertToEnum<LanduseKind>();
if (!_settings.HasSettingsFor(kind) && JustDrawEverythingFam)
if (!_settings.HasSettingsFor(kind) && !JustDrawEverythingFam)
continue;

var typeSettings = _settings.GetSettingsFor(kind);
Expand Down

0 comments on commit 9595cb4

Please sign in to comment.