After working with the config, I'm realizing the option "Lock Bradley At Launch Site": false doesn't work. I added some debug logging in the mod to function CanLockBradley and found that the evaluation Instance.launchSite.Bounds.Contains(entity.transform.position) doesn't identify the bradley properly at launch site.
Bradley In Launch Bounds Check
Hey @nivex, line 338 if (Instance.launchSiteEnabled && Instance.launchSite.Bounds.Contains(entity.transform.position)) needs changed to if (Instance.launchSiteEnabled && Instance.launchSite.IsInBounds(entity.ServerPosition))
ok thanks for the fix!