add user type

This commit is contained in:
pypy
2021-02-03 12:51:09 +09:00
parent 2c4b04f0be
commit c540814db6
2 changed files with 27 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ function parseRawGameLog(dt, type, args) {
case 'player-joined':
gameLog.userDisplayName = args[0];
gameLog.userType = args[1];
break;
case 'player-left':