1
0
forked from noxious/server

First try chat logics

This commit is contained in:
2024-08-19 18:55:41 +02:00
parent 910d8ad8f1
commit 706107ba4d
3 changed files with 47 additions and 5 deletions

View File

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