mirror of
https://github.com/ServUO/ServUO
synced 2026-08-11 20:23:04 -04:00
- Added property rewards gump to Huntsman Challenge - POF no longer works on jewels - Added propery functionality to water barrels/fillable barrels - fixed crash fix
34 lines
568 B
C#
34 lines
568 B
C#
using System;
|
|
using Server.Network;
|
|
using Server.Targeting;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public class SmallFish : Item
|
|
{
|
|
[Constructable]
|
|
public SmallFish()
|
|
: base( Utility.Random( 0x0DD6, 2 ) )
|
|
{
|
|
}
|
|
|
|
public SmallFish(Serial serial)
|
|
: base(serial)
|
|
{
|
|
}
|
|
|
|
public override void Serialize( GenericWriter writer )
|
|
{
|
|
base.Serialize( writer );
|
|
|
|
writer.Write( (int) 0 ); // version
|
|
}
|
|
|
|
public override void Deserialize( GenericReader reader )
|
|
{
|
|
base.Deserialize( reader );
|
|
|
|
int version = reader.ReadInt();
|
|
}
|
|
}
|
|
}
|