mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-25 11:58:17 +02:00
added status effect loading
- todo: populate table (and test this doesnt break everything ever), send charawork and message packets
This commit is contained in:
parent
13af16ec0e
commit
d9d185d7e6
12 changed files with 360 additions and 379 deletions
|
@ -7,6 +7,7 @@ using FFXIVClassic_Map_Server.packets.send.actor;
|
|||
using FFXIVClassic_Map_Server.utils;
|
||||
using FFXIVClassic_Map_Server.actors.chara.ai;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace FFXIVClassic_Map_Server.Actors
|
||||
{
|
||||
|
@ -73,7 +74,7 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
public DateTime lastAiUpdate;
|
||||
|
||||
public AIContainer aiContainer;
|
||||
public StatusEffects statusEffects;
|
||||
public StatusEffectContainer statusEffects;
|
||||
|
||||
public CharacterTargetingAllegiance allegiance;
|
||||
|
||||
|
@ -83,7 +84,7 @@ namespace FFXIVClassic_Map_Server.Actors
|
|||
for (int i = 0; i < charaWork.statusShownTime.Length; i++)
|
||||
charaWork.statusShownTime[i] = 0xFFFFFFFF;
|
||||
|
||||
this.statusEffects = new StatusEffects(this);
|
||||
this.statusEffects = new StatusEffectContainer(this);
|
||||
}
|
||||
|
||||
public SubPacket CreateAppearancePacket()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue