mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-07-24 11:28:22 +02:00
opening quest stuff
This commit is contained in:
parent
9fc99faa5c
commit
92de857cda
49 changed files with 873 additions and 88 deletions
|
@ -233,7 +233,7 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai
|
|||
if (mpCost != 0)
|
||||
return (ushort)Math.Ceiling((cost * mpCost * 0.001));
|
||||
|
||||
return tpCost;
|
||||
return mpCost != 0 ? (ushort)Math.Ceiling((cost * mpCost * 0.001)) : (ushort)0;
|
||||
}
|
||||
|
||||
public List<Character> GetTargets()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue