示例#1
0
文件: g_main.c 项目: darkshade9/aq2w
/*
 * G_MuteClient
 */
static void G_MuteClient(char *name, boolean_t mute) {
	g_client_t *cl;

	if (!(cl = G_ClientByName(name)))
		return;

	cl->muted = mute;
}
示例#2
0
/*
 * @brief
 */
static void G_MuteClient(char *name, _Bool mute) {
	g_client_t *cl;

	if (!(cl = G_ClientByName(name)))
		return;

	cl->locals.muted = mute;
}