mirror of
https://github.com/FalloutCollaborationProject/FCP-Tools.git
synced 2026-07-27 16:59:37 -07:00
Introduce a HeavyCargo mod extension and hauling patch so only pawns with enough carrying capacity can haul sealed nuclear waste barrels. Rework the single barrel into a haulable resource under a new wasteland salvage category, and let larger barrel stacks/pallets deconstruct back into singles. Also fixes a wastelander backstory typo, disables rotation on the power armor simulator graphic, refreshes several hair textures, and removes unused atlas/strip textures.
8 lines
178 B
C#
8 lines
178 B
C#
namespace FCP.Core;
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithMembers)]
|
|
public class ModExtension_HeavyCargo : DefModExtension
|
|
{
|
|
public float minCarryingCapacity = 150f;
|
|
}
|