mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
- Nothing was changed in the Consumables folder code wise. Just cleaned it up a little. Bug Fixes - Juka Bow now has correct "requirements". - Fixed an issue where loot would stop dropping correctly. Co-authored-by: TrueUO <knight.daniel.r@gmail.com>
36 lines
No EOL
751 B
C#
36 lines
No EOL
751 B
C#
namespace Server.Items
|
|
{
|
|
public class ArchProtectionScroll : SpellScroll
|
|
{
|
|
[Constructable]
|
|
public ArchProtectionScroll()
|
|
: this(1)
|
|
{
|
|
}
|
|
|
|
[Constructable]
|
|
public ArchProtectionScroll(int amount)
|
|
: base(25, 0x1F46, amount)
|
|
{
|
|
}
|
|
|
|
public ArchProtectionScroll(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override void Serialize(GenericWriter writer)
|
|
{
|
|
base.Serialize(writer);
|
|
|
|
writer.Write(0); // version
|
|
}
|
|
|
|
public override void Deserialize(GenericReader reader)
|
|
{
|
|
base.Deserialize(reader);
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
} |