Calling hook OnHammerHit resulted in a conflict between the following plugins: RemoverTool - False (Boolean), BaseRepair (True (Boolean))
Calling hook OnHammerHit resulted in a conflict
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
true for object hooks actually; false/null for bool.Arainrr
if (Interface.CallHook("OnHammerHit", ownerPlayer, info) != null) { return; }For such hooks, I think returning false is standard
Wulf
true for object hooks actually; false/null for bool.
Maybe there is any document introducing them?