Skip to content

Commit

Permalink
Patch build
Browse files Browse the repository at this point in the history
  • Loading branch information
zelytra committed Mar 20, 2024
1 parent aecc71a commit 47ec040
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions webapp/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ const gameStatusRefresh: number = setInterval(() => {
ip: rustSotServer.ip,
location: "",
port: rustSotServer.port,
color: ""
}
fleet.joinServer();
}
Expand All @@ -74,7 +75,7 @@ onMounted(() => {
isReady: false,
status: PlayerStates.CLOSED,
username: "",
device : PlayerDevice.MICROSOFT
device: PlayerDevice.MICROSOFT
});
});
Expand All @@ -92,7 +93,7 @@ onUnmounted(() => {
clearInterval(gameStatusRefresh)
});
watch(()=>UserStore.player.countDown, () => {
watch(() => UserStore.player.countDown, () => {
router.push("/fleet")
})
</script>
Expand Down

0 comments on commit 47ec040

Please sign in to comment.