RimWorld

RimWorld

WeaponStats
Translation Logic Bugs & Fixes​
This will cause the turret column description to be untranslated.​

Source\WeaponsTab\WeaponStats.cs
line 467 printCellSort(WeaponsTab.Other, "label", "Name", ww, LABEL_WIDTH); To line 467 printCellSort(WeaponsTab.Turrets, "label", "WeaponStats.ColName".Translate(), ww, LABEL_WIDTH);
line 471 printCellSort(WeaponsTab.Turrets, h.property, h.label, ww); To line 471 printCellSort(WeaponsTab.Turrets, h.property, ("WeaponStats.Col" + h.label).Translate(), ww);