Skip to content

Commit 57bdca5

Browse files
committed
Fixing reload issue
1 parent b8b9b24 commit 57bdca5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ZaupHomeCommand.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ public class HomeCommand : RocketPlugin<HomeCommandConfiguration>
1717
{
1818
public static bool running;
1919
public static DateTime start;
20-
public Dictionary<string, byte> WaitGroups = new Dictionary<string, byte>();
20+
public Dictionary<string, byte> WaitGroups;
2121
public static HomeCommand Instance;
2222

2323
protected override void Load()
2424
{
2525
HomeCommand.Instance = this;
26+
WaitGroups = new Dictionary<string, byte>();
2627
foreach (HomeGroup hg in this.Configuration.Instance.WaitGroups)
2728
{
2829
WaitGroups.Add(hg.Id, hg.Wait);

0 commit comments

Comments
 (0)