Fix a null reference error
This commit is contained in:
parent
d0adf0b1dd
commit
9a5aea156f
1 changed files with 3 additions and 1 deletions
|
@ -17,7 +17,7 @@ namespace Bot
|
||||||
{
|
{
|
||||||
public class Program
|
public class Program
|
||||||
{
|
{
|
||||||
public static Logger Log = new Logger("Core5");
|
public static Logger Log;
|
||||||
public static double BotVer = ASMInfo.BotVer;
|
public static double BotVer = ASMInfo.BotVer;
|
||||||
public static string BotStr = ASMInfo.BotName; // internal identifier for linden
|
public static string BotStr = ASMInfo.BotName; // internal identifier for linden
|
||||||
public static MainConfiguration conf;
|
public static MainConfiguration conf;
|
||||||
|
@ -49,6 +49,8 @@ namespace Bot
|
||||||
public static unsafe void Main(string[] args)
|
public static unsafe void Main(string[] args)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Setting up Main Configuration");
|
Console.WriteLine("Setting up Main Configuration");
|
||||||
|
Log = new Logger("BotCore5");
|
||||||
|
BotSession.Instance.Logger = Log;
|
||||||
ZHash.Instance.NewKey();
|
ZHash.Instance.NewKey();
|
||||||
ZHash.Instance.Key = "Test";
|
ZHash.Instance.Key = "Test";
|
||||||
Console.WriteLine("ZHash (Test): " + ZHash.Instance.Key);
|
Console.WriteLine("ZHash (Test): " + ZHash.Instance.Key);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue