11 lines
215 B
C#
11 lines
215 B
C#
using ModernUO.Serialization;
|
|
|
|
namespace Server.Items;
|
|
|
|
// It isn't flippable
|
|
[SerializationGenerator(0)]
|
|
public partial class Globe : Item
|
|
{
|
|
[Constructible]
|
|
public Globe() : base(0x1047) => Weight = 3.0;
|
|
}
|