1
0
forked from noxious/server

Removed migrations (oops), npm update, registration bug fix, include spriteImages in spriteRepository, few typo fixes

This commit is contained in:
2024-07-24 03:27:22 +02:00
parent 4b81d7ff67
commit a0fe0760b0
22 changed files with 175 additions and 236 deletions

View File

@ -29,7 +29,7 @@ export default function (socket: TSocket, io: Server) {
const character: Character = await prisma.character.create({
data: {
name: data.name,
userId: user_id,
userId: user_id
// characterTypeId: 1 // @TODO set to chosen character type
}
})