From 0d8ac0dbdd910e433360e726e715e28351088a2a Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 29 Jun 2001 15:42:53 +0000 Subject: [PATCH] whitespace --- nq/source/sv_progs.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/nq/source/sv_progs.c b/nq/source/sv_progs.c index 78c736c92..40d9b41d1 100644 --- a/nq/source/sv_progs.c +++ b/nq/source/sv_progs.c @@ -73,16 +73,19 @@ prune_edict (progs_t *pr, edict_t *ent) { // remove things from different skill levels or deathmatch if (deathmatch->int_val) { - if (((int) SVFIELD (ent, spawnflags, float) & SPAWNFLAG_NOT_DEATHMATCH)) { + if (((int) SVFIELD (ent, spawnflags, float) + & SPAWNFLAG_NOT_DEATHMATCH)) { return 1; } - } else if ( - (current_skill == 0 - && ((int) SVFIELD (ent, spawnflags, float) & SPAWNFLAG_NOT_EASY)) + } else if ((current_skill == 0 + && ((int) SVFIELD (ent, spawnflags, float) + & SPAWNFLAG_NOT_EASY)) || (current_skill == 1 - && ((int) SVFIELD (ent, spawnflags, float) & SPAWNFLAG_NOT_MEDIUM)) + && ((int) SVFIELD (ent, spawnflags, float) + & SPAWNFLAG_NOT_MEDIUM)) || (current_skill >= 2 - && ((int) SVFIELD (ent, spawnflags, float) & SPAWNFLAG_NOT_HARD))) { + && ((int) SVFIELD (ent, spawnflags, float) + & SPAWNFLAG_NOT_HARD))) { return 1; } return 0;