We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8b9b24 commit 57bdca5Copy full SHA for 57bdca5
ZaupHomeCommand.cs
@@ -17,12 +17,13 @@ public class HomeCommand : RocketPlugin<HomeCommandConfiguration>
17
{
18
public static bool running;
19
public static DateTime start;
20
- public Dictionary<string, byte> WaitGroups = new Dictionary<string, byte>();
+ public Dictionary<string, byte> WaitGroups;
21
public static HomeCommand Instance;
22
23
protected override void Load()
24
25
HomeCommand.Instance = this;
26
+ WaitGroups = new Dictionary<string, byte>();
27
foreach (HomeGroup hg in this.Configuration.Instance.WaitGroups)
28
29
WaitGroups.Add(hg.Id, hg.Wait);
0 commit comments