17 lines
293 B
C#
17 lines
293 B
C#
using System;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class RandomWand
|
|
{
|
|
public static BaseWand CreateWand()
|
|
{
|
|
return CreateRandomWand();
|
|
}
|
|
|
|
public static BaseWand CreateRandomWand()
|
|
{
|
|
return Loot.RandomWand();
|
|
}
|
|
}
|
|
} |