mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04:00
fixed auto attack (<3 showmo)
This commit is contained in:
@@ -7,7 +7,7 @@ namespace FFXIVClassic_Map_Server.packets.receive
|
||||
{
|
||||
public bool invalidPacket = false;
|
||||
public uint actorID;
|
||||
public uint otherVal; //Usually 0xE0000000
|
||||
public uint attackTarget; //Usually 0xE0000000
|
||||
|
||||
public SetTargetPacket(byte[] data)
|
||||
{
|
||||
@@ -17,7 +17,7 @@ namespace FFXIVClassic_Map_Server.packets.receive
|
||||
{
|
||||
try{
|
||||
actorID = binReader.ReadUInt32();
|
||||
otherVal = binReader.ReadUInt32();
|
||||
attackTarget = binReader.ReadUInt32();
|
||||
}
|
||||
catch (Exception){
|
||||
invalidPacket = true;
|
||||
|
Reference in New Issue
Block a user