Updates Message Packets (#321)

### API Breaking Change
Combined `AsciiMessage` and `UnicodeMessage` into a single function that takes two arguments, `bool ascii` and `string lang`. Lang can be null (or anything) if ascii is true. 

- [X] Changes message packets
- [X] Cleans up some code
- [X] Uses benchmarks to determine if the spanwriter + copyfrom
This commit is contained in:
Kamron Batman 2020-11-20 21:50:13 -08:00 committed by GitHub
parent 10d884fe30
commit b6cd408623
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 1160 additions and 1025 deletions

View file

@ -48,19 +48,16 @@ namespace Server.Mobiles
public virtual void SayPriceTo(Mobile m)
{
m.Send(
new MessageLocalizedAffix(
Serial,
Body,
MessageType.Regular,
SpeechHue,
3,
1008052,
Name,
AffixType.Append,
JoinCost.ToString(),
""
)
m.NetState.SendMessageLocalizedAffix(
Serial,
Body,
MessageType.Regular,
SpeechHue,
3,
1008052,
Name,
AffixType.Append,
JoinCost.ToString()
);
}