open "Cortex Command\Base.rte\Scenes\Scripts/One Man Army.lua"
seek
Code:
         for x = 0, math.ceil(math.random(3)) do
            local y = math.random();
            if y > 0.05 then
               actor[x] = CreateAHuman(self.AList[math.random(#self.AList)]);
               actor[x].Team = 1;
               actor[x].AIMode = Actor.AIMODE_BRAINHUNT;
               actor[x]:AddInventoryItem(CreateHDFirearm(self.WList[math.random(#self.WList)]));
               actor[x]:AddInventoryItem(CreateHDFirearm("Medium Digger"));
            else
               actor[x] = CreateACrab("Dreadnought");
               actor[x].Team = 1;
               actor[x].AIMode = Actor.AIMODE_BRAINHUNT;
            end
         end
delete the line containing
Code:
actor[x]:AddInventoryItem(CreateHDFirearm("Medium Digger"));