| 410 | } |
| 411 | |
| 412 | void Debugger::MergeFinished() |
| 413 | { |
| 414 | ServerThreadReentry(); |
| 415 | debuggingDisabled_ = false; |
| 416 | breakpoints_.SetDebuggingDisabled(false); |
| 417 | |
| 418 | isInitialized_ = true; |
| 419 | actionMappings_.UpdateRuleActionMappings(); |
| 420 | if (breakpoints_.ShouldTriggerGlobalBreakpoint(GlobalBreakpointType::GlobalBreakOnGameInit)) { |
| 421 | GlobalBreakpointInServerThread(GlobalBreakpointReason::GameInit); |
| 422 | } |
| 423 | } |
| 424 | |
| 425 | void Debugger::GameInitHook() |
| 426 | { |
no test coverage detected