Skip to content
This repository has been archived by the owner on Jun 23, 2023. It is now read-only.

Commit

Permalink
Fixed logging-related errors that were breaking Essentials.
Browse files Browse the repository at this point in the history
Fixes #9
Will release as version 1.7.2.2315
  • Loading branch information
bthetford committed Mar 31, 2015
1 parent 00a6a5c commit a430011
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions EssentialsPlugin/AssemblyFileVersion.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
//2312
//2315
//
// This code was generated by a tool. Any changes made manually will be lost
// the next time this code is regenerated.
//

using System.Reflection;

[assembly: AssemblyFileVersion("1.7.1.2312")]
[assembly: AssemblyVersion("1.7.1.2312")]
[assembly: AssemblyFileVersion("1.7.2.2315")]
[assembly: AssemblyVersion("1.7.2.2315")]
4 changes: 2 additions & 2 deletions EssentialsPlugin/AssemblyFileVersion.tt
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@

using System.Reflection;

[assembly: AssemblyFileVersion("1.7.1.<#= revisionNumber #>")]
[assembly: AssemblyVersion("1.7.1.<#= revisionNumber #>")]
[assembly: AssemblyFileVersion("1.7.2.<#= revisionNumber #>")]
[assembly: AssemblyVersion("1.7.2.<#= revisionNumber #>")]
2 changes: 1 addition & 1 deletion EssentialsPlugin/Utility/Player.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
namespace EssentialsPlugin.Utility
{
using NLog;
using NLog.Fluent;
using VRage.Library.Utils;

public static class Player
Expand Down Expand Up @@ -385,6 +384,7 @@ public override int GetHashCode()

public class Players
{
private static readonly Logger Log = LogManager.GetLogger( "PluginLog" );
private static volatile bool m_checking = false;
private static Players m_instance;
public static Players Instance
Expand Down

0 comments on commit a430011

Please sign in to comment.