================= Script_Show ================= */
| 2111 | ================= |
| 2112 | */ |
| 2113 | qboolean Script_Show(itemDef_t *item, const char **args) |
| 2114 | { |
| 2115 | const char *name; |
| 2116 | if (String_Parse(args, &name)) |
| 2117 | { |
| 2118 | Menu_ShowItemByName((menuDef_t *) item->parent, name, qtrue); |
| 2119 | } |
| 2120 | |
| 2121 | return qtrue; |
| 2122 | } |
| 2123 | |
| 2124 | |
| 2125 |
nothing calls this directly
no test coverage detected