Les échecs de défis donnent lieu à un mouvement de points nul

This commit is contained in:
2024-12-14 13:30:26 +01:00
parent 9dfb2ba15d
commit 979362d012
6 changed files with 52 additions and 12 deletions

View File

@ -5,7 +5,7 @@ export interface MoneyUpdate {
id: number
playerId: number
amount: number
reason: 'START' | 'NEW_RUN' | 'BUY_TRAIN' | 'WIN_CHALLENGE'
reason: 'START' | 'NEW_RUN' | 'BUY_TRAIN' | 'CHALLENGE'
timestamp: number
runId: number | null
actionId: number | null
@ -24,7 +24,7 @@ export interface MoneyUpdatePayload {
id: number
playerId: number
amount: number
reason: 'START' | 'NEW_RUN' | 'BUY_TRAIN' | 'WIN_CHALLENGE'
reason: 'START' | 'NEW_RUN' | 'BUY_TRAIN' | 'CHALLENGE'
timestamp: string
runId: number | null
actionId: number | null