fix: Fixes crafting so it doesn't create items before world load. (#1110)
This commit is contained in:
parent
04c44e2968
commit
c6c644c966
11 changed files with 11 additions and 11 deletions
|
|
@ -7,7 +7,7 @@ public class DefAlchemy : CraftSystem
|
|||
{
|
||||
private static readonly Type typeofPotion = typeof(BasePotion);
|
||||
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefAlchemy();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ public class DefBlacksmithy : CraftSystem
|
|||
private static readonly Type typeofAnvil = typeof(AnvilAttribute);
|
||||
private static readonly Type typeofForge = typeof(ForgeAttribute);
|
||||
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefBlacksmithy();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ namespace Server.Engines.Craft;
|
|||
|
||||
public class DefBowFletching : CraftSystem
|
||||
{
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefBowFletching();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ namespace Server.Engines.Craft;
|
|||
|
||||
public class DefCarpentry : CraftSystem
|
||||
{
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefCarpentry();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ namespace Server.Engines.Craft;
|
|||
|
||||
public class DefCartography : CraftSystem
|
||||
{
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefCartography();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ namespace Server.Engines.Craft;
|
|||
|
||||
public class DefCooking : CraftSystem
|
||||
{
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefCooking();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ namespace Server.Engines.Craft;
|
|||
|
||||
public class DefGlassblowing : CraftSystem
|
||||
{
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefGlassblowing();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public class DefInscription : CraftSystem
|
|||
private int _circle, _mana;
|
||||
private int _index;
|
||||
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefInscription();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ namespace Server.Engines.Craft;
|
|||
|
||||
public class DefMasonry : CraftSystem
|
||||
{
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefMasonry();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ public class DefTailoring : CraftSystem
|
|||
typeof(BrocadeSquareGozaMatEastDeed), typeof(BrocadeSquareGozaMatSouthDeed)
|
||||
};
|
||||
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefTailoring();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ public class DefTinkering : CraftSystem
|
|||
typeof(HeatingStand)
|
||||
};
|
||||
|
||||
public static void Configure()
|
||||
public static void Initialize()
|
||||
{
|
||||
CraftSystem = new DefTinkering();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue