Skip to content

Commit

Permalink
Updated name to Custom Avatars Plugin.
Browse files Browse the repository at this point in the history
  • Loading branch information
xyonico committed Aug 3, 2018
1 parent 4b0ea7c commit a6b782e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CustomAvatar/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private set

public string Name
{
get { return "Custom Avatar Plugin"; }
get { return "Custom Avatars Plugin"; }
}

public string Version
Expand All @@ -66,16 +66,16 @@ public string Version

public static void Log(string message)
{
Console.WriteLine("[CustomAvatarPlugin] " + message);
File.AppendAllText("CustomAvatarPlugin-log.txt", "[Custom Avatar Plugin] " + message + Environment.NewLine);
Console.WriteLine("[CustomAvatarsPlugin] " + message);
File.AppendAllText("CustomAvatarsPlugin-log.txt", "[Custom Avatars Plugin] " + message + Environment.NewLine);
}

public void OnApplicationStart()
{
if (_init) return;
_init = true;

File.WriteAllText("CustomAvatarPlugin-log.txt", string.Empty);
File.WriteAllText("CustomAvatarsPlugin-log.txt", string.Empty);

AvatarLoader = new AvatarLoader(CustomAvatarsPath, AvatarsLoaded);

Expand Down

0 comments on commit a6b782e

Please sign in to comment.