Skip to content

Commit

Permalink
fix: status 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
david-parkk committed May 1, 2024
1 parent 9cf1953 commit 5361be1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/kutaverse/game/map/dto/UserRequestDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public User toEntity(){
.eulerAngleX(Integer.valueOf(eulerAngleX))
.eulerAngleY(Integer.valueOf(eulerAngleY))
.eulerAngleZ(Integer.valueOf(eulerAngleZ))
.status(Status.JUMP)
.status(Status.valueOf(status))
.build();
}
}

0 comments on commit 5361be1

Please sign in to comment.