Skip to content

Commit 44cd512

Browse files
committed
Remove expired check on CallDeprecatedHook
We will remove the hooks the first forced wipe after they expire to make it less confusing for server owners as to why their plugins suddenly stopped working.
1 parent 64f9932 commit 44cd512

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Plugins/PluginManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public object CallDeprecatedHook(string oldHook, string newHook, DateTime expire
253253
return null;
254254
}
255255

256-
if (plugins.Count == 0 || expireDate < DateTime.Now)
256+
if (plugins.Count == 0)
257257
{
258258
return null;
259259
}

0 commit comments

Comments
 (0)