8/7 Force Wipe Fix

For anyone still using this plugin and getting an error after the force wipe today 8/7/2025, change this line on 221 to fix and then reload the plugin:

From this:
return player.IPlayer.HasPermission(PermissionItemBypass) || player.inventory.FindItemsByItemID(1159991980) != null;

To this:
return player.IPlayer.HasPermission(PermissionItemBypass) || player.inventory.FindItemByItemID(1159991980) != null;

what does the fix do?

8rxxeeOxzArtTRp.jpg d33pakganesh

what does the fix do?

The method name changed from "FindItemsByItemID" to "FindItemByItemID" to properly reflect it's only looking for singular item inputs and not multiple. It just fixes it so that the plugin can continue to run properly.