TipTac Reborn

TipTac Reborn

862k Downloads

[dev] frameForDelayedInspection:HookNotifyInspect has an incorrect check

Dairyman opened this issue ยท 1 comments

commented

if (not frameForDelayedInspection.NotifyInspectHooked) then
return;
end

should that not be

if (frameForDelayedInspection.NotifyInspectHooked) then 
 	return; 
 end 

frameForDelayedInspection.NotifyInspectHooked initial value is false.

commented

Thanks for this hint! ๐Ÿ‘

I'm currently refactoring some parts before I add the next feature requests. I already pushed them to the repository but I haven't tested them yet.

But this hooking thing isn't obvious to recognize during testing and might have slipped through if you haven't mentioned this. ๐Ÿ˜‰