From 4e7570020f80f33693fcf110295f7c5a6eb78cce Mon Sep 17 00:00:00 2001 From: Andy2 Date: Wed, 20 Apr 2011 22:13:44 -0700 Subject: [PATCH] remove mistaken (I think) assert --- xwords4/common/server.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xwords4/common/server.c b/xwords4/common/server.c index 211103da2..10c104632 100644 --- a/xwords4/common/server.c +++ b/xwords4/common/server.c @@ -823,7 +823,8 @@ showPrevScore( ServerCtxt* server ) lp = &gi->players[prevTurn]; if ( LP_IS_LOCAL(lp) ) { - XP_ASSERT( LP_IS_ROBOT(lp) ); + /* Why can't a local non-robot have postponed score? */ + // XP_ASSERT( LP_IS_ROBOT(lp) ); strCode = STR_ROBOT_MOVED; } else { strCode = STR_REMOTE_MOVED;