mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 13:34:38 +02:00
Removed old db stuff.
This commit is contained in:
parent
625ee299f7
commit
bea796ec85
16 changed files with 29 additions and 686 deletions
|
@ -226,7 +226,7 @@ namespace FFXIVClassic_Lobby_Server
|
|||
|
||||
public void testCodePacket(uint id, uint value, string target)
|
||||
{
|
||||
SetActorPropetyPacket changeProperty = new SetActorPropetyPacket();
|
||||
SetActorPropetyPacket changeProperty = new SetActorPropetyPacket(target);
|
||||
changeProperty.addInt(id, value);
|
||||
changeProperty.setTarget(target);
|
||||
|
||||
|
@ -250,7 +250,7 @@ namespace FFXIVClassic_Lobby_Server
|
|||
{
|
||||
foreach (KeyValuePair<uint, ConnectedPlayer> entry in mConnectedPlayerList)
|
||||
{
|
||||
SetActorPropetyPacket changeProperty = new SetActorPropetyPacket();
|
||||
SetActorPropetyPacket changeProperty = new SetActorPropetyPacket(target);
|
||||
changeProperty.addProperty(entry.Value.getActor(), name);
|
||||
changeProperty.addProperty(entry.Value.getActor(), "charaWork.parameterSave.hpMax[0]");
|
||||
changeProperty.setTarget(target);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue