oops :P
This commit is contained in:
parent
62b037bd91
commit
99a4c806c4
1 changed files with 6 additions and 6 deletions
|
|
@ -107,7 +107,7 @@ namespace Server.Items
|
|||
}
|
||||
|
||||
[Constructable]
|
||||
public HeartwoodLog( int amount ) : base( CraftResource.Heartwood )
|
||||
public HeartwoodLog( int amount ) : base( CraftResource.Heartwood, amount )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -140,7 +140,7 @@ namespace Server.Items
|
|||
|
||||
[Constructable]
|
||||
public BloodwoodLog( int amount )
|
||||
: base( CraftResource.Bloodwood )
|
||||
: base( CraftResource.Bloodwood, amount )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -174,7 +174,7 @@ namespace Server.Items
|
|||
|
||||
[Constructable]
|
||||
public FrostwoodLog( int amount )
|
||||
: base( CraftResource.Frostwood )
|
||||
: base( CraftResource.Frostwood, amount )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -208,7 +208,7 @@ namespace Server.Items
|
|||
|
||||
[Constructable]
|
||||
public OakLog( int amount )
|
||||
: base( CraftResource.OakWood )
|
||||
: base( CraftResource.OakWood, amount )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -242,7 +242,7 @@ namespace Server.Items
|
|||
|
||||
[Constructable]
|
||||
public AshLog( int amount )
|
||||
: base( CraftResource.AshWood )
|
||||
: base( CraftResource.AshWood, amount )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -276,7 +276,7 @@ namespace Server.Items
|
|||
|
||||
[Constructable]
|
||||
public YewLog( int amount )
|
||||
: base( CraftResource.YewWood )
|
||||
: base( CraftResource.YewWood, amount )
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue