Skip to content

Commit b497df3

Browse files
committed
Small bug fix
1 parent e4b5da3 commit b497df3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OxidePatcher/Patching/Patcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ public void Patch()
201201
var patchedHooks = new List<string> { hook.Name };
202202
while (bhook.BaseHook != null)
203203
{
204-
bhook = hook.BaseHook;
204+
bhook = bhook.BaseHook;
205205
patchedHooks.Add(bhook.Name);
206206
}
207207
patchedHooks.Reverse();

0 commit comments

Comments
 (0)