mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-05-20 08:26:59 -04: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:
@@ -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()
|
||||
|
Reference in New Issue
Block a user