Skip to content
This repository has been archived by the owner on Feb 1, 2024. It is now read-only.

Commit

Permalink
Removed startup info
Browse files Browse the repository at this point in the history
- SMod PluginManager does this automatically now
  • Loading branch information
Rnen committed Nov 10, 2019
1 parent 90bcfaa commit dc36c03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AdminToolbox/AdminToolbox/AdminToolbox.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ public static bool
/// Called when <see cref="AdminToolbox"/> gets disabled
/// </summary>
public override void OnDisable()
=> this.Info(this.Details.name + " v." + this.Details.version + (isColored ? " - @#fg=Red;Disabled@#fg=Default;" : " - Disabled"));
=> Debug(this.Details.name + " v." + this.Details.version + (isColored ? " - @#fg=Red;Disabled@#fg=Default;" : " - Disabled"));

/// <summary>
/// Called when <see cref="AdminToolbox"/> gets enabled
Expand All @@ -117,7 +117,7 @@ public override void OnEnable()
{
plugin = this;
ATFileManager.WriteVersionToFile();
this.Info(this.Details.name + " v." + this.Details.version + (isColored ? " - @#fg=Green;Enabled@#fg=Default;" : " - Enabled"));
Debug(this.Details.name + " v." + this.Details.version + (isColored ? " - @#fg=Green;Enabled@#fg=Default;" : " - Enabled"));
}

/// <summary>
Expand Down

0 comments on commit dc36c03

Please sign in to comment.