Fixes code according to modern code style. Fixes a few expression bugs.
This commit is contained in:
parent
89eea25e5f
commit
970fd563b2
3324 changed files with 441118 additions and 433755 deletions
|
|
@ -1,15 +1,15 @@
|
|||
namespace Server.Network
|
||||
{
|
||||
public class DisplayHelpTopic : Packet
|
||||
{
|
||||
public DisplayHelpTopic( int topicID, bool display ) : base( 0xBF )
|
||||
{
|
||||
EnsureCapacity( 11 );
|
||||
public class DisplayHelpTopic : Packet
|
||||
{
|
||||
public DisplayHelpTopic(int topicID, bool display) : base(0xBF)
|
||||
{
|
||||
EnsureCapacity(11);
|
||||
|
||||
m_Stream.Write( (short) 0x17 );
|
||||
m_Stream.Write( (byte) 1 );
|
||||
m_Stream.Write( (int) topicID );
|
||||
m_Stream.Write( (bool) display );
|
||||
}
|
||||
}
|
||||
m_Stream.Write((short)0x17);
|
||||
m_Stream.Write((byte)1);
|
||||
m_Stream.Write(topicID);
|
||||
m_Stream.Write(display);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue