mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-25 11:58:17 +02:00
BattleCommand changes
New targeting flags for BattleCommand and TargetFind. (This breaks combat until new BattleCommand data is in) Changed MP and TP to shorts in BattleCommand to handle cases where they might go negative. (might not be correct?)
This commit is contained in:
parent
3e58cdbd6c
commit
a458608322
4 changed files with 148 additions and 135 deletions
|
@ -2431,8 +2431,8 @@ namespace FFXIVClassic_Map_Server
|
|||
battleCommand.castTimeMs = reader.GetUInt32("castTime");
|
||||
battleCommand.maxRecastTimeSeconds = reader.GetUInt32("recastTime");
|
||||
battleCommand.recastTimeMs = battleCommand.maxRecastTimeSeconds * 1000;
|
||||
battleCommand.mpCost = reader.GetUInt16("mpCost");
|
||||
battleCommand.tpCost = reader.GetUInt16("tpCost");
|
||||
battleCommand.mpCost = reader.GetInt16("mpCost");
|
||||
battleCommand.tpCost = reader.GetInt16("tpCost");
|
||||
battleCommand.animationType = reader.GetByte("animationType");
|
||||
battleCommand.effectAnimation = reader.GetUInt16("effectAnimation");
|
||||
battleCommand.modelAnimation = reader.GetUInt16("modelAnimation");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue