diff options
-rw-r--r-- | FICS/obsproc.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/FICS/obsproc.c b/FICS/obsproc.c index 966e30e..56de00e 100644 --- a/FICS/obsproc.c +++ b/FICS/obsproc.c @@ -380,9 +380,8 @@ com_allobservers(int p, param_list param) start = 0; end = g_num; } else if ((obgame >= g_num) || - ((obgame < g_num) && - ((garray[obgame].status != GAME_ACTIVE) && - (garray[obgame].status != GAME_EXAMINE)))) { + (garray[obgame].status != GAME_ACTIVE && + garray[obgame].status != GAME_EXAMINE)) { pprintf(p, "There is no such game.\n"); return COM_OK; } else { |