mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-09 05:54:50 +02:00
Got rid of some garbage packets. Emote packet implemented though bug with descriptions.
This commit is contained in:
parent
810edfcee4
commit
d3325676c5
22 changed files with 49 additions and 4 deletions
|
@ -18,8 +18,8 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
public uint characterID = 0;
|
||||
public uint actorID = 0;
|
||||
|
||||
private uint currentTarget = 0;
|
||||
private uint currentLockedTarget = 0;
|
||||
private uint currentTarget = 0xC0000000;
|
||||
private uint currentLockedTarget = 0xC0000000;
|
||||
|
||||
private uint currentZoneID = 0;
|
||||
|
||||
|
@ -121,5 +121,10 @@ namespace FFXIVClassic_Map_Server.dataobjects
|
|||
{
|
||||
currentLockedTarget = actorID;
|
||||
}
|
||||
|
||||
public uint getTargetedActor()
|
||||
{
|
||||
return currentTarget;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue