Christmas Patriarch

Change Weight Mutator. Mutator weapon weight change

A mutator for changing the weight and maximizing the ammo capacity of a weapon.

class ChangeWeightMut extends Mutator;
simulated function PostBeginPlay()
{
    class 'VSSDTAmmo'.default.MaxAmmo = 140;
    class'KFMod.M99SniperRifle'.default.Weight = 3.000000;
    class'KFMod.M99Pickup'.default.Weight = 3.000000;
    Log("ChangeWeightMut I am Working");
}
defaultproperties
{
    bAddToServerPackages=True
    GroupName="KF-ChangeWeight"
    FriendlyName="ChangeWeightMut"
    Description="ChangeWeightMut"
    bAlwaysRelevant=True
    RemoteRole=ROLE_SimulatedProxy
}