XF 2.2 In entity_pre_save is there a way to get the old value

I'm trying to get the difference between the new value and the old value to send a changed amount PM, but I cant seem to figure out how to get the old value any help would be greatly appreciated.
 
PHP:
$oldValue = $this->getExistingValue('field_name');
$newValue = $this->field_name;
 
Top Bottom