| 795 | } |
| 796 | |
| 797 | String CommandInterface::FormatCommand(String command) |
| 798 | { |
| 799 | if(command.size() && command[0] == '!') |
| 800 | { |
| 801 | return "!" + PlainFormatCommand(command.Substr(1)); |
| 802 | } |
| 803 | else |
| 804 | return highlight(command); |
| 805 | } |
| 806 | |
| 807 | LuaScriptInterface::~LuaScriptInterface() = default; |
| 808 |