having a issue with adding custom fletching tools
public override Type GetCraftableType()
{
switch (Resource)
{
case CraftResource.OakWood:
return typeof(OakRunicFletcherTools);
case CraftResource.AshWood:
return typeof(AshRunicFletcherTools);
case CraftResource.YewWood:
return typeof(YewRunicFletcherTools);
case CraftResource.Heartwood:
return typeof(HeartwoodRunicFletcherTools);
case CraftResource.Bloodwood:
return typeof(BloodwoodRunicFletcherTools);
case CraftResource.Frostwood:
return typeof(FrostwoodRunicFletcherTools);
case CraftResource.Ebony:
return typeof(EbonyRunicFletcherTools);
case CraftResource.Bamboo:
return typeof(BambooRunicFletcherTools);
case CraftResource.PurpleHeart:
return typeof(PurpleHeartRunicFletcherTools);
case CraftResource.Redwood:
return typeof(RedwoodRunicFletcherTools);
case CraftResource.Petrified:
return typeof(PetrifiedRunicFletcherTools);
default:
return null;
}
}
this is whats there and its stating not a suitable method to override if i can get some help please and thank you :)
 
here are the errors that im recieving
[doublepost=1534389663][/doublepost]here 1
[doublepost=1534389697][/doublepost]heres the other
[doublepost=1534390480][/doublepost]the mule part
 

Attachments

  • need1.PNG
    need1.PNG
    45.3 KB · Views: 6
  • RunicFletchersTools.cs
    3.2 KB · Views: 0
  • RunicTinkerTools.cs
    2.8 KB · Views: 1
  • Mule.cs
    4.8 KB · Views: 1
Back