"""\r
Determines if a given set of events correspond with a non-bot\r
"""\r
- if not events['P'].startswith('bot'):\r
+ if not events['P'].startswith('bot#'):\r
return True\r
else:\r
return False\r
if key == 'scoreboard-pickups': pgstat.pickups = int(value)\r
if key == 'scoreboard-caps': pgstat.captures = int(value)\r
if key == 'scoreboard-score': pgstat.score = int(round(float(value)))\r
- if key == 'scoreboard-teamscore': pgstat.teamscore = int(round(float(value)))\r
if key == 'scoreboard-deaths': pgstat.deaths = int(value)\r
if key == 'scoreboard-kills': pgstat.kills = int(value)\r
if key == 'scoreboard-suicides': pgstat.suicides = int(value)\r