forked from mirrors/NBTExplorer
A bunch of entity types needed the new keyword on their static TypeId properties.
This commit is contained in:
parent
60f38ca402
commit
d818806411
27 changed files with 27 additions and 27 deletions
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Blaze"; }
|
get { return "Blaze"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "CaveSpider"; }
|
get { return "CaveSpider"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Chicken"; }
|
get { return "Chicken"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Cow"; }
|
get { return "Cow"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("powered", TagType.TAG_BYTE, SchemaOptions.OPTIONAL),
|
new SchemaNodeScaler("powered", TagType.TAG_BYTE, SchemaOptions.OPTIONAL),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Creeper"; }
|
get { return "Creeper"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "EnderDragon"; }
|
get { return "EnderDragon"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,7 +19,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("carriedData", TagType.TAG_SHORT, SchemaOptions.CREATE_ON_MISSING),
|
new SchemaNodeScaler("carriedData", TagType.TAG_SHORT, SchemaOptions.CREATE_ON_MISSING),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Enderman"; }
|
get { return "Enderman"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Ghast"; }
|
get { return "Ghast"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Giant"; }
|
get { return "Giant"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "LavaSlime"; }
|
get { return "LavaSlime"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,7 +12,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeList("Items", TagType.TAG_COMPOUND, ItemCollection.Schema),
|
new SchemaNodeList("Items", TagType.TAG_COMPOUND, ItemCollection.Schema),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return EntityMinecart.TypeId; }
|
get { return EntityMinecart.TypeId; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("Fuel", TagType.TAG_SHORT),
|
new SchemaNodeScaler("Fuel", TagType.TAG_SHORT),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return EntityMinecart.TypeId; }
|
get { return EntityMinecart.TypeId; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Monster"; }
|
get { return "Monster"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "MushroomCow"; }
|
get { return "MushroomCow"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("Saddle", TagType.TAG_BYTE),
|
new SchemaNodeScaler("Saddle", TagType.TAG_BYTE),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Pig"; }
|
get { return "Pig"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("Anger", TagType.TAG_SHORT),
|
new SchemaNodeScaler("Anger", TagType.TAG_SHORT),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "PigZombie"; }
|
get { return "PigZombie"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -15,7 +15,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("Color", TagType.TAG_BYTE, SchemaOptions.CREATE_ON_MISSING),
|
new SchemaNodeScaler("Color", TagType.TAG_BYTE, SchemaOptions.CREATE_ON_MISSING),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Sheep"; }
|
get { return "Sheep"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Silverfish"; }
|
get { return "Silverfish"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Skeleton"; }
|
get { return "Skeleton"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("Size", TagType.TAG_INT),
|
new SchemaNodeScaler("Size", TagType.TAG_INT),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Slime"; }
|
get { return "Slime"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "SmallFireball"; }
|
get { return "SmallFireball"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "SnowMan"; }
|
get { return "SnowMan"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Spider"; }
|
get { return "Spider"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Squid"; }
|
get { return "Squid"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,7 +23,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("Profession", TagType.TAG_INT),
|
new SchemaNodeScaler("Profession", TagType.TAG_INT),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Villager"; }
|
get { return "Villager"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeScaler("Angry", TagType.TAG_BYTE),
|
new SchemaNodeScaler("Angry", TagType.TAG_BYTE),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Wolf"; }
|
get { return "Wolf"; }
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ namespace Substrate.Entities
|
||||||
new SchemaNodeString("id", TypeId),
|
new SchemaNodeString("id", TypeId),
|
||||||
});
|
});
|
||||||
|
|
||||||
public static string TypeId
|
public static new string TypeId
|
||||||
{
|
{
|
||||||
get { return "Zombie"; }
|
get { return "Zombie"; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue