refactor(game): 테스트 캐릭터 서비스 및 세션 컨트롤러 정리

This commit is contained in:
JiWoong Sul
2026-01-13 15:11:01 +09:00
parent a48f4886d7
commit c420331300
2 changed files with 12 additions and 15 deletions

View File

@@ -385,10 +385,7 @@ class GameSessionController extends ChangeNotifier {
await _stopLoop(saveOnStop: false);
// TestCharacterService로 테스트 캐릭터 생성
final testService = TestCharacterService(
config: progressService.config,
rng: _state!.rng,
);
final testService = TestCharacterService(rng: _state!.rng);
final entry = testService.createTestCharacter(_state!);