diff --git a/.gitignore b/.gitignore
index 72bfa4c..4746b85 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
.idea/
node_modules/
+dist/
*.env
\ No newline at end of file
diff --git a/package.json b/package.json
index 926467b..5a18729 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
"version": "1.0.0",
"type": "module",
"scripts": {
- "start:ui": "vite preview --host --port 4000",
+ "start:ui": "vite preview --host --port 3000",
"start:server": "NODE_ENV=production tsx ./src/server/main.ts",
"build:ui": "vite build",
"dev:ui": "vite --host",
diff --git a/src/App.vue b/src/App.vue
index de8295f..66d6827 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -2,9 +2,6 @@
-
- Verbindung wird hergestellt…
-
diff --git a/src/game.ts b/src/game.ts
index f39acbd..be3a99e 100644
--- a/src/game.ts
+++ b/src/game.ts
@@ -64,6 +64,7 @@ export const useGame = defineStore("gameState", () => {
trpcClient.director.setObjectVisibility.mutate({ id, isVisible })
},
handleGameEvent(event: GameEvent) {
+ console.log(event)
switch (event.type) {
case "room-changed":
currentInteraction.value = null
diff --git a/src/screens/InteractionsScreen.vue b/src/screens/InteractionsScreen.vue
index 9659781..f59b4ae 100644
--- a/src/screens/InteractionsScreen.vue
+++ b/src/screens/InteractionsScreen.vue
@@ -16,7 +16,7 @@
@object-drop="onObjectInteractionDrop"
/>
-