Skip to content

Commit

Permalink
[RecoverEmptyContainers] Fixed an exception log that was caused when …
Browse files Browse the repository at this point in the history
…running the plugin client-side
  • Loading branch information
WhiteFang5 committed Aug 5, 2022
1 parent e2b1fc8 commit 88c197f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 4 additions & 0 deletions RecoverEmptyContainers/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ public sealed override void Load()

public void OnGameInitialized()
{
if(VWorld.IsClient)
{
return;
}
RecoverEmptyContainersSystem.Initialize();
}

Expand Down

0 comments on commit 88c197f

Please sign in to comment.