diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-05 22:47:01 +0200 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-05-05 22:47:01 +0200 |
| commit | 330b8f0790667f4e287ad3a1a5a1917957fc4e5c (patch) | |
| tree | 98d9100960ff32f4675836f17ce9b44f8e1a82f1 | |
| parent | 8fc264f11b60884da9288299b6950ece1cf749f1 (diff) | |
| download | bridge-330b8f0790667f4e287ad3a1a5a1917957fc4e5c.tar.gz bridge-330b8f0790667f4e287ad3a1a5a1917957fc4e5c.zip | |
fix default player grab not grabbing any matches
| -rw-r--r-- | server.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -252,7 +252,7 @@ async function searchPlayer(name) { // request grab jobs await Promise.map(players, (p) => grabPlayer(p.attributes.name, p.attributes.shardId, - undefined, p.id, "regular")); + defaultGrabstartForCategory("regular"), p.id, "regular")); }); // notify web if (!found) |
