So I replaced my Ender 3 motherboard with a BIGTREETECH SKR Mini E3 V1.2.

I had to compile new Marlin firmware and enable the bltouch. Before with my factory motherboard it would auto home to the center of the build plate. Now it tries to auto home off of the build plate at 0.

With my bltouch I am using a smooth fang cooling duct with the bltouch mounted to the right of the print head. The offsets I used on the factory board were
define X_PROBE_OFFSET_FROM_EXTRUDER 50
define Y_PROBE_OFFSET_FROM_EXTRUDER -5

With the new board I have to use #define NOZZLE_TO_PROBE_OFFSET { 50, -5, 0 }

I think it is the -5 that is pushing it off the build plate but why is it even trying to auto home to 0 and not the middle of the build plate?

How can I fix this in the firmware?