Skip to content

Commit

Permalink
fix: last testing session weird issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Tadeuchi committed Aug 12, 2024
1 parent baeba3e commit 95fcb95
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions src/game/scenes/ConnectWalletScene.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,9 @@ export default class ConnectWalletScene extends Phaser.Scene {
console.log('Connect Wallet Scene - 2. Preload');
}

async create() {
create() {
console.log('Connect Wallet Scene - 3. Create');
setTimeout(() => {
EventBus.emit('current-scene-ready', this);
});
EventBus.emit('current-scene-ready', this);
}

changeScene(address) {
Expand Down
2 changes: 1 addition & 1 deletion vite/config.prod.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export default defineConfig({
server: {
watch: false,
hmr: false,
host: '0.0.0.o',
host: '0.0.0.0',
port: 9001,
open: 'index.html',
},
Expand Down

0 comments on commit 95fcb95

Please sign in to comment.