Hammerhand submitted a new resource:

Wood crafting hue fix - wood hues

Not exactly a script release, but a "fix" for a few. When using Carpentry or BowFletching, the colored wood hues never show up, making it sort of pointless to have them. Now they will and its easy. In DefCarpentry.cs & DefBowFletching.cs just add this
Code:
        private DefCarpentry() : base( 1, 1, 1.25 )// base( 1, 1, 3.0 )
        {
        }
        public override bool RetainsColorFrom(CraftItem item, Type type)
        {
            return true;
        }
Now, for the bows &...

Read more about this resource...
 
Back