diff --git a/examples/dolphin-or-relay-connection/README.md b/examples/dolphin-or-relay-connection/README.md index 232e3d1..44d493c 100644 --- a/examples/dolphin-or-relay-connection/README.md +++ b/examples/dolphin-or-relay-connection/README.md @@ -20,7 +20,7 @@ yarn run build 2. Prepare the example by changing directory into the example folder and installing the dependencies. ```bash -cd examples/relay-connection-or-dolphin +cd examples/dolphin-or-relay-connection yarn install ``` diff --git a/examples/dolphin-or-relay-connection/index.js b/examples/dolphin-or-relay-connection/index.js index d69d002..9f95fa5 100644 --- a/examples/dolphin-or-relay-connection/index.js +++ b/examples/dolphin-or-relay-connection/index.js @@ -12,7 +12,7 @@ const { Ports } = require('@slippi/slippi-js') const { ConnectionStatus, SlpLiveStream, SlpRealTime, ComboFilter, generateDolphinQueuePayload } = require("@vinceau/slp-realtime"); // TODO: Make sure you set these values! -const ADDRESS = "localhost"; // leave as is for Dolphin or a relay on the same computer +const ADDRESS = "127.0.0.1"; // leave as is for Dolphin or change to "localhost" for a relay on the same computer const PORT = Ports.DEFAULT; // options are DEFAULT, RELAY_START, and LEGACY const outputCombosFile = "combos.json"; // The json file to write combos to @@ -89,4 +89,4 @@ realtime.combo.end$.pipe( // comboQueue.push({path: filename, combo: payload.combo}); // } // } -// }); \ No newline at end of file +// });