\r
1) a match in which no player made a fastest lap AND was\r
on the scoreboard\r
+\r
+ ... or for NB, in which not all maps have weapons\r
+\r
+ 1) a match in which no player made a positive or negative score\r
"""\r
r = re.compile(r'acc-.*-cnt-fired')\r
flg_nonzero_score = False\r
\r
if gametype == 'cts':\r
return not flg_fastest_lap\r
+ elif gametype == 'nb':\r
+ return not flg_nonzero_score\r
else:\r
return not (flg_nonzero_score and flg_acc_events)\r
\r