| 6893 | } |
| 6894 | |
| 6895 | static std::string ASGetModValidityString(ModID& sid) { |
| 6896 | ModInstance* mod = ModLoading::Instance().GetMod(sid); |
| 6897 | if (mod) { |
| 6898 | return mod->GetValidityErrors(); |
| 6899 | } else { |
| 6900 | return ""; |
| 6901 | } |
| 6902 | } |
| 6903 | |
| 6904 | static std::string ASGetModThumbnail(ModID& sid) { |
| 6905 | ModInstance* mod = ModLoading::Instance().GetMod(sid); |
nothing calls this directly
no test coverage detected