Adds style cop (#109)
This commit is contained in:
parent
3e715bcb60
commit
556a17aba8
1725 changed files with 33831 additions and 38046 deletions
|
|
@ -8,10 +8,10 @@ namespace Server.Engines.PartySystem
|
|||
{
|
||||
EnsureCapacity(7);
|
||||
|
||||
m_Stream.Write((short)0x0006);
|
||||
m_Stream.Write((byte)0x02);
|
||||
m_Stream.Write((byte)0);
|
||||
m_Stream.Write(m.Serial);
|
||||
Stream.Write((short)0x0006);
|
||||
Stream.Write((byte)0x02);
|
||||
Stream.Write((byte)0);
|
||||
Stream.Write(m.Serial);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -21,12 +21,12 @@ namespace Server.Engines.PartySystem
|
|||
{
|
||||
EnsureCapacity(7 + p.Count * 4);
|
||||
|
||||
m_Stream.Write((short)0x0006);
|
||||
m_Stream.Write((byte)0x01);
|
||||
m_Stream.Write((byte)p.Count);
|
||||
Stream.Write((short)0x0006);
|
||||
Stream.Write((byte)0x01);
|
||||
Stream.Write((byte)p.Count);
|
||||
|
||||
for (int i = 0; i < p.Count; ++i)
|
||||
m_Stream.Write(p[i].Mobile.Serial);
|
||||
Stream.Write(p[i].Mobile.Serial);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -36,14 +36,14 @@ namespace Server.Engines.PartySystem
|
|||
{
|
||||
EnsureCapacity(11 + p.Count * 4);
|
||||
|
||||
m_Stream.Write((short)0x0006);
|
||||
m_Stream.Write((byte)0x02);
|
||||
m_Stream.Write((byte)p.Count);
|
||||
Stream.Write((short)0x0006);
|
||||
Stream.Write((byte)0x02);
|
||||
Stream.Write((byte)p.Count);
|
||||
|
||||
m_Stream.Write(removed.Serial);
|
||||
Stream.Write(removed.Serial);
|
||||
|
||||
for (int i = 0; i < p.Count; ++i)
|
||||
m_Stream.Write(p[i].Mobile.Serial);
|
||||
Stream.Write(p[i].Mobile.Serial);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -56,10 +56,10 @@ namespace Server.Engines.PartySystem
|
|||
|
||||
EnsureCapacity(12 + text.Length * 2);
|
||||
|
||||
m_Stream.Write((short)0x0006);
|
||||
m_Stream.Write((byte)(toAll ? 0x04 : 0x03));
|
||||
m_Stream.Write(from.Serial);
|
||||
m_Stream.WriteBigUniNull(text);
|
||||
Stream.Write((short)0x0006);
|
||||
Stream.Write((byte)(toAll ? 0x04 : 0x03));
|
||||
Stream.Write(from.Serial);
|
||||
Stream.WriteBigUniNull(text);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -69,9 +69,9 @@ namespace Server.Engines.PartySystem
|
|||
{
|
||||
EnsureCapacity(10);
|
||||
|
||||
m_Stream.Write((short)0x0006);
|
||||
m_Stream.Write((byte)0x07);
|
||||
m_Stream.Write(leader.Serial);
|
||||
Stream.Write((short)0x0006);
|
||||
Stream.Write((byte)0x07);
|
||||
Stream.Write(leader.Serial);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue