Skip to content

Commit

Permalink
Merge branches 'develop' and 'develop' of https://github.com/P2-AAU-S…
Browse files Browse the repository at this point in the history
…W2/Curve-Fever into develop
  • Loading branch information
BabaWolo committed May 23, 2023
2 parents 63fb324 + 22b1bf1 commit 705d433
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
File renamed without changes.
10 changes: 5 additions & 5 deletions prisma/schema.prisma
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ generator client {

datasource db {
provider = "sqlite"
url = "file:./database.db"
url = "file:./db/database.db"
}

model User {
Expand All @@ -19,8 +19,8 @@ model User {
}

model Session {
id String @id
sid String @unique
data String
expiresAt DateTime
id String @id
sid String @unique
data String
expiresAt DateTime
}
2 changes: 1 addition & 1 deletion public/javascript/game.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ socket.on("updatePosition", (updatedPlayers) => {
warmupBtn.classList.remove("display-none");
}
}
draw(players);
});
draw(players);
// console.time("updatePosition");
});

Expand Down

0 comments on commit 705d433

Please sign in to comment.