#W# Crafting and Gathering skills don't count towards skill cap.
This commit is contained in:
parent
f556a5a740
commit
5f61347479
3 changed files with 51 additions and 17 deletions
|
|
@ -2119,7 +2119,7 @@ namespace Server.Network
|
|||
|
||||
m_Stream.Write( (ushort) (s.Info.SkillID + 1) );
|
||||
m_Stream.Write( (ushort) uv );
|
||||
m_Stream.Write( (ushort) s.BaseFixedPoint );
|
||||
m_Stream.Write( (ushort) (!s.IsSecondarySkill() ? s.BaseFixedPoint : 0) );
|
||||
m_Stream.Write( (byte) s.Lock );
|
||||
m_Stream.Write( (ushort) s.CapFixedPoint );
|
||||
}
|
||||
|
|
@ -2153,7 +2153,7 @@ namespace Server.Network
|
|||
m_Stream.Write( (byte) 0xDF ); // type: delta, capped
|
||||
m_Stream.Write( (ushort) skill.Info.SkillID );
|
||||
m_Stream.Write( (ushort) uv );
|
||||
m_Stream.Write( (ushort) skill.BaseFixedPoint );
|
||||
m_Stream.Write( (ushort) (!skill.IsSecondarySkill() ? skill.BaseFixedPoint : 0 ) );
|
||||
m_Stream.Write( (byte) skill.Lock );
|
||||
m_Stream.Write( (ushort) skill.CapFixedPoint );
|
||||
|
||||
|
|
@ -3909,7 +3909,7 @@ namespace Server.Network
|
|||
{
|
||||
}
|
||||
|
||||
public CityInfo( string city, string building, int description, int x, int y, int z ) : this( city, building, description, x, y, z, Map.Trammel )
|
||||
public CityInfo( string city, string building, int description, int x, int y, int z ) : this( city, building, description, x, y, z, Map.Trammel)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue