Ignore:
Timestamp:
Aug 26, 2014, 4:41:47 PM (10 years ago)
Author:
alloc
Message:

Fixes

Location:
binary-improvements/7dtd-server-fixes/src/CustomCommands
Files:
1 edited
1 moved

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/CustomCommands/Version.cs

    r114 r130  
    33using System.Reflection;
    44
    5 public class Version : ConsoleCommand
     5namespace AllocsFixes.CustomCommands
    66{
    7         public Version (ConsoleSdtd cons) : base(cons)
     7        public class Version : ConsoleCommand
    88        {
    9         }
     9                public Version (ConsoleSdtd cons) : base(cons)
     10                {
     11                }
    1012
    11         public override string Description ()
    12         {
    13                 return "get the currently running version of the server fixes";
    14         }
     13                public override string Description ()
     14                {
     15                        return "get the currently running version of the server fixes";
     16                }
    1517
    16         public override string[] Names ()
    17         {
    18                 return new string[] { "version", string.Empty };
    19         }
     18                public override string[] Names ()
     19                {
     20                        return new string[] { "version", string.Empty };
     21                }
    2022
    21         public override void Run (string[] _params)
    22         {
    23                 try {
    24                         m_Console.SendResult ("Server fixes version: " + Assembly.GetExecutingAssembly ().GetName ().Version);
    25                 } catch (Exception e) {
    26                         Log.Out ("Error in Version.Run: " + e);
     23                public override void Run (string[] _params)
     24                {
     25                        try {
     26                                m_Console.SendResult ("Server fixes version: " + Assembly.GetExecutingAssembly ().GetName ().Version);
     27                        } catch (Exception e) {
     28                                Log.Out ("Error in Version.Run: " + e);
     29                        }
    2730                }
    2831        }
    2932}
    30 
Note: See TracChangeset for help on using the changeset viewer.