Calling hook OnHammerHit resulted in a conflict

Calling hook OnHammerHit resulted in a conflict between the following plugins: RemoverTool - False (Boolean), BaseRepair (True (Boolean))

This is something that can be ignored but should be fixed in RemoverTool as returning true is the standard.

			if (Interface.CallHook("OnHammerHit", ownerPlayer, info) != null)
			{
				return;
			}

For such hooks, I think returning false is standard

SzzSXfn9yzRquet.jpg Arainrr
			if (Interface.CallHook("OnHammerHit", ownerPlayer, info) != null)
			{
				return;
			}

For such hooks, I think returning false is standard

true for object hooks actually; false/null for bool.
XYzdrkWJdyPk8s1.jpg Wulf
true for object hooks actually; false/null for bool.

Maybe there is any document introducing them?