Changed synchronization method for getAi.

This commit is contained in:
MobiusDevelopment
2019-11-04 18:12:29 +00:00
parent 90c4c92ec9
commit eaa8f64803
18 changed files with 144 additions and 36 deletions

View File

@ -1742,12 +1742,18 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe
* Gets this creature's AI.
* @return the AI
*/
public synchronized CreatureAI getAI()
public CreatureAI getAI()
{
CreatureAI ai = _ai;
if (ai == null)
{
_ai = ai = initAI();
synchronized (this)
{
if (_ai == null)
{
_ai = ai = initAI();
}
}
}
return ai;
}