Sorted.
Incase anyone is wanting to do this, I edited image.php in the core directory, if you find
$table = 'customavatar';, then replace the $filedata_thumb to just say $filedata as I have here, it's not elegant, and I think someone can probably do this better! But it's doing what I wanted now.
Code:
else
{
$table = 'customavatar';
if ($vbulletin->GPC['type'] == 'thumb' OR !empty($vbulletin->GPC['thumb']))
{
//$filedata = 'filedata_thumb';
$filedata = 'filedata';
}
}