mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-26 04:18:22 +02:00
derp
This commit is contained in:
parent
b633126568
commit
ba13d5798d
47 changed files with 144 additions and 144 deletions
|
@ -158,11 +158,11 @@ namespace FFXIVClassic_Map_Server.packets.send.actor
|
|||
isMore = flag;
|
||||
}
|
||||
|
||||
public void SetTarget(string tarGet)
|
||||
public void SetTarget(string target)
|
||||
{
|
||||
binWriter.Write((byte)(isMore ? 0x62 + tarGet.Length : 0x82 + tarGet.Length));
|
||||
binWriter.Write(Encoding.ASCII.GetBytes(tarGet));
|
||||
runningByteTotal += (ushort)(1 + Encoding.ASCII.GetByteCount(tarGet));
|
||||
binWriter.Write((byte)(isMore ? 0x62 + target.Length : 0x82 + target.Length));
|
||||
binWriter.Write(Encoding.ASCII.GetBytes(target));
|
||||
runningByteTotal += (ushort)(1 + Encoding.ASCII.GetByteCount(target));
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue