moved getpath crap to pathfinding (or should i keep it in actor?)

- stubbed some more crap
This commit is contained in:
Tahir Akhlaq 2017-07-02 20:01:24 +01:00
parent 100f3ae156
commit cc1929a9fb
9 changed files with 149 additions and 25 deletions

View file

@ -16,7 +16,8 @@ namespace FFXIVClassic_Map_Server.actors.chara.ai.utils
}
public static int CalculateBaseDamage(Character attacker, Character defender)
{
return 0;
// todo: actually calculate damage
return Program.Random.Next(10) * 10;
}
}
}
}