| 558 | #pragma region OwnerChangeBuildupFix |
| 559 | |
| 560 | void __fastcall BuildingClass_Place_Wrapper(BuildingClass* pThis, void*, bool captured) |
| 561 | { |
| 562 | // Skip calling Place() here if we're in middle of buildup. |
| 563 | if (pThis->CurrentMission != Mission::Construction || pThis->BState != (int)BStateType::Construction) |
| 564 | pThis->Place(captured); |
| 565 | } |
| 566 | |
| 567 | DEFINE_FUNCTION_JUMP(CALL6, 0x448CEF, BuildingClass_Place_Wrapper); |
| 568 |
nothing calls this directly
no outgoing calls
no test coverage detected