I might be drunk

This commit is contained in:
2025-12-14 23:18:20 +01:00
parent 499639823e
commit ad279af3fc
2 changed files with 2 additions and 4 deletions

View File

@@ -39,7 +39,7 @@ public class GameService {
return gameDto.getId();
}
public String addMove(@RequestBody String gameId, @RequestBody String move) throws ServiceException {
public String addMove(String gameId, String move) throws ServiceException {
try {
Game g = retrieveGame(gameId);
g.addMove(move);