Skip to content

Commit

Permalink
Bug fix plugin reload
Browse files Browse the repository at this point in the history
  • Loading branch information
terminator-97 committed Apr 3, 2020
1 parent eb5324a commit 971029e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions SCPUtils/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace SCPUtils
public class Utils : Plugin
{
public static bool IsStarted { get; set; }
public static string pluginVersion = "1.2.5";
public static string pluginVersion = "1.2.6";
public override string getName { get; } = "SCPUtils";

public EventHandlers EventHandlers { get; private set; }
Expand Down Expand Up @@ -77,10 +77,11 @@ public override void OnDisable()
EventHandlers = null;
Commands = null;
Functions = null;
Database.LiteDatabase.Dispose();
}

public override void OnReload()
{
{
}

public void LoadEvents()
Expand Down

0 comments on commit 971029e

Please sign in to comment.