| 917 | // Miscellaneous DB specific functions. |
| 918 | |
| 919 | string getMiscString(const string &misc, const string &suffix) |
| 920 | |
| 921 | { |
| 922 | int num_replacements = 0; |
| 923 | |
| 924 | string txt = _getRandomisedStr(MiscDB, misc, suffix, num_replacements); |
| 925 | _execute_embedded_lua(txt); |
| 926 | |
| 927 | return txt; |
| 928 | } |
| 929 | |
| 930 | ///////////////////////////////////////////////////////////////////////////// |
| 931 | // Hints DB specific functions. |
no test coverage detected