[generator] Disable fake types for lines

This commit is contained in:
Ilya Zverev 2018-04-16 20:10:48 +03:00 committed by Aleksandr Zatsepin
parent f6f15b43be
commit 7bbfa035c0

View file

@ -254,8 +254,11 @@ namespace
if (wheelchair == type && typeLength == 2)
return true;
if (sponsored == type || internet == type || event == type)
return true;
if (g != GEOM_LINE)
{
if (sponsored == type || internet == type || event == type)
return true;
}
return false;
}