| 463 | } |
| 464 | |
| 465 | const LangTable *getCurrentModLangTable() |
| 466 | { |
| 467 | UTF8 saneVarName[256]; |
| 468 | |
| 469 | if(getCurrentModVarName(saneVarName, sizeof(saneVarName))) |
| 470 | { |
| 471 | const LangTable *lt = dynamic_cast<LangTable *>(Sim::findObject(Con::getIntVariable((const char*)saneVarName))); |
| 472 | return lt; |
| 473 | } |
| 474 | return NULL; |
| 475 | } |
| 476 | |
| 477 | const LangTable *getModLangTable(const UTF8 *mod) |
| 478 | { |
nothing calls this directly
no test coverage detected