The game sometimes CTDs when creating a control with ctrlCreate which uses the ctrlStructuredText as a base control. You can let this bug happen a few times before the game crashes. The rpt file is spammed with the message "Wrong color format" (crash report attached in zip file, reproducable w/o mods). It seems that the base class is not correctly defined:
```
class ctrlStructuredText: ctrlDefaultText
{
type=13;
colorBackground[]={0,0,0,0};
size="4.32 * (1 / (getResolution select 3)) * pixelGrid * 0.5";
text="";
class Attributes
{
align="left";
color="#ffffff";
colorLink="";
size=1;
font="RobotoCondensedLight";
};
onCanDestroy="";
onDestroy="";
};
```
When setting the colorLink attribute to a valid hex color it works fine. Creating new controls is still not possible.