Gnomad
03-05-2016, 11:41 AM
The XML classifies jars as:
<type name="jar">
<noun>^(?:jar|bottle|beaker)$</noun>
<exclude>^glass bottle$</exclude>
</type>
But Ta'Illistim's jars are "a vaalin-rimmed glass bottle", which causes a false negative. Their name only shows up as "glass bottle"; vaalin-rimmed is part of the long and thus isn't picked up, so adding a name field to jar won't help.
Not sure what other glass bottles were causing the issue, but I killed the exclude on my end.
<type name="jar">
<noun>^(?:jar|bottle|beaker)$</noun>
<exclude>^glass bottle$</exclude>
</type>
But Ta'Illistim's jars are "a vaalin-rimmed glass bottle", which causes a false negative. Their name only shows up as "glass bottle"; vaalin-rimmed is part of the long and thus isn't picked up, so adding a name field to jar won't help.
Not sure what other glass bottles were causing the issue, but I killed the exclude on my end.