Commit 271be4df authored by Hugo Denizart's avatar Hugo Denizart
Browse files

BanchoLobbyRegexes: Make playerFinished return score as a Number

parent 50d52a5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -185,7 +185,7 @@ module.exports = {
				const m = r.exec(str);
				return {
					username: m[1],
					score: m[2],
					score: Number(m[2]),
					pass: m[3] == "PASS"
				};
			}