Skip to content

Commit

Permalink
fix: #552 (#553)
Browse files Browse the repository at this point in the history
Co-authored-by: Nicolo John Davis <nicolodavis@gmail.com>
  • Loading branch information
julienroulle and nicolodavis committed Mar 6, 2020
1 parent 79ebcc3 commit a080ce3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/transport/local.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ export function Local(opts) {
return transportOpts => {
let master;

if (localMasters.has(transportOpts.gameKey)) {
if (localMasters.has(transportOpts.gameKey) & !opts) {
master = localMasters.get(transportOpts.gameKey);
} else {
master = new LocalMaster({
Expand Down

0 comments on commit a080ce3

Please sign in to comment.