We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 362c572 commit 161e1faCopy full SHA for 161e1fa
History/History.cs
@@ -32,7 +32,7 @@ public class History : TerrariaPlugin
32
33
public History(Main game) : base(game)
34
{
35
- this.Order = -1;
+ this.Order = 5;
36
}
37
protected override void Dispose(bool disposing)
38
@@ -50,7 +50,7 @@ public override void Initialize()
50
Connect();
51
this.InitBreaks();
52
ServerApi.Hooks.GameInitialize.Register(this, this.OnInitialize);
53
- ServerApi.Hooks.NetGetData.Register(this, this.OnGetData);
+ ServerApi.Hooks.NetGetData.Register(this, this.OnGetData, int.MinValue);
54
ServerApi.Hooks.WorldSave.Register(this, this.OnSaveWorld);
55
56
0 commit comments