================= Script_Hide ================= */
| 2146 | ================= |
| 2147 | */ |
| 2148 | qboolean Script_Hide(itemDef_t *item, const char **args) |
| 2149 | { |
| 2150 | const char *name; |
| 2151 | if (String_Parse(args, &name)) |
| 2152 | { |
| 2153 | Menu_ShowItemByName((menuDef_t *) item->parent, name, qfalse); |
| 2154 | } |
| 2155 | |
| 2156 | return qtrue; |
| 2157 | } |
| 2158 | |
| 2159 | /* |
| 2160 | ================= |
nothing calls this directly
no test coverage detected