Fix for the following error: "Failed to compile: There is no argument given that corresponds to the required parameter 'player' of 'BaseCombatEntity.OnRepairFinished(BasePlayer)' | Line: 325, Pos: 24"

On line 325 change:

entity.OnRepairFinished();

To

entity.OnRepairFinished(player);