| 715 | { |
| 716 | bool found = false; |
| 717 | FOR_ENUM_ITEMS(item_quality, qv) |
| 718 | { |
| 719 | if (toLower_cp437(ENUM_KEY_STR(item_quality, qv)) != token) |
| 720 | continue; |
| 721 | minqual = qv; |
| 722 | found = true; |
| 723 | } |
| 724 | |
| 725 | if (!found) |
| 726 | { |
nothing calls this directly
no test coverage detected