예제 #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;
}