Skip to content

Commit

Permalink
base: no longer warn on missing init command
Browse files Browse the repository at this point in the history
  • Loading branch information
alterNERDtive committed Mar 15, 2021
1 parent 4fcca54 commit 9745e1c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/VoiceAttack-base/base.cs
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ public static void VA_Init1(dynamic vaProxy)
vaProxy.IntegerVariableChanged += new Action<String, int?, int?, Guid?>((name, from, to, id) => { ConfigurationChanged(name, from, to, id); });
vaProxy.TextVariableChanged += new Action<String, String, String, Guid?>((name, from, to, id) => { ConfigurationChanged(name, from, to, id); });
VA.SetBoolean("alterNERDtive-base.initialized", true);
Commands.TriggerEvent("alterNERDtive-base.initialized", wait: false);
Commands.TriggerEvent("alterNERDtive-base.initialized", wait: false, logMissing: false);
Log.Notice("Init successful.");
}

Expand Down

0 comments on commit 9745e1c

Please sign in to comment.