diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e94ad3..f6aa9c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,9 @@ * Initial release ## Recover Empty Containers +### Next Release +* Fixed an exception log that was caused when running the plugin client-side + ### v1.0.1 * Fixed an exploit where you could get infinite empty containers when cancelling the ability usage of the Potion/Brew diff --git a/RecoverEmptyContainers/Plugin.cs b/RecoverEmptyContainers/Plugin.cs index 00ec137..d6e28f4 100644 --- a/RecoverEmptyContainers/Plugin.cs +++ b/RecoverEmptyContainers/Plugin.cs @@ -38,6 +38,10 @@ public sealed override void Load() public void OnGameInitialized() { + if(VWorld.IsClient) + { + return; + } RecoverEmptyContainersSystem.Initialize(); }