kuid table error

WillPac

Willamette Pacific RR
Hey guys and dolls.

I have several cars with error messages that say "the asset in '0' is not of the correct type."

What type of asset needs to go in field 0 of a kuid table? I would fix it, but I don't know what it's looking for.
 
What this type of error is usually referring to is in the config.txt file of a railcar that can haul commodities. Suppose I have a box car whose config.txt file has this kind of a queue container:

queues
{
load
{
size 8
initial-count 0
product-kuid <kuid:-3:10013>

allowed-products
{
0 <kuid:-3:10042>
}
}
}

If you check the TRS2006CCG you'll see that kuid:-3:10042 is a product-category kind, not a product. If it looked like this:

allowed-categories
{
0 <kuid:-3:10042>
}
it would be ok.

To fix the above example you could make it like this:

queues
{
load
{
size 8
initial-count 0
product-kuid <kuid:-3:10013>

allowed-products
{
0 <kuid:-3:10013>
}
}
}

which commits ok.

Bob
 
Thanks a ton, Bob...the last several hoppers I have edited with that error have cleared up that evil red !

Ron
 
Back
Top