yup
This commit is contained in:
parent
8b71d2c2c0
commit
03252fe6ec
|
@ -18,7 +18,7 @@ namespace Revitalize
|
||||||
/// Revitalize CoreObject Class. This is a core class and should only be extended upon.
|
/// Revitalize CoreObject Class. This is a core class and should only be extended upon.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
///
|
///
|
||||||
[XmlInclude(typeof(Revitalize.Objects.Light))]
|
[XmlInclude(typeof(Revitalize.Objects.Light)),XmlInclude(typeof(Revitalize.Objects.SpriteFontObject))]
|
||||||
public class CoreObject : StardewValley.Object
|
public class CoreObject : StardewValley.Object
|
||||||
{
|
{
|
||||||
public const int chair = 0;
|
public const int chair = 0;
|
||||||
|
|
|
@ -39,7 +39,7 @@ namespace Revitalize.Objects
|
||||||
this.tileLocation = tile;
|
this.tileLocation = tile;
|
||||||
lightsOn = false;
|
lightsOn = false;
|
||||||
lightColor = Color.Black;
|
lightColor = Color.Black;
|
||||||
//thisType = this.GetType();
|
thisType = this.GetType().ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public Light()
|
public Light()
|
||||||
|
|
|
@ -265,6 +265,7 @@ namespace Revitalize
|
||||||
string a;
|
string a;
|
||||||
string[] b;
|
string[] b;
|
||||||
string s="";
|
string s="";
|
||||||
|
Log.AsyncC(path);
|
||||||
// Log.AsyncC(data);
|
// Log.AsyncC(data);
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -304,7 +305,7 @@ namespace Revitalize
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Log.AsyncG("attempting to parse from path");
|
Log.AsyncG("attempting to parse from path and value of s is " + s);
|
||||||
}
|
}
|
||||||
|
|
||||||
// var cObj = parseBagOfHolding(path); //pair.Value.parse.Invoke(path);
|
// var cObj = parseBagOfHolding(path); //pair.Value.parse.Invoke(path);
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue