Fixed custom npc titles.

Contributed by CostyKiller.
This commit is contained in:
MobiusDevelopment 2021-03-12 21:10:30 +00:00
parent 5925c6caa8
commit 94f6b43692
4 changed files with 4 additions and 4 deletions

View File

@ -2306,7 +2306,7 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe
}
else
{
_title = value.length() > 21 ? value.substring(0, 20) : value;
_title = value;
}
}

View File

@ -2306,7 +2306,7 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe
}
else
{
_title = value.length() > 21 ? value.substring(0, 20) : value;
_title = value;
}
}

View File

@ -2310,7 +2310,7 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe
}
else
{
_title = value.length() > 21 ? value.substring(0, 20) : value;
_title = value;
}
}

View File

@ -2317,7 +2317,7 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe
}
else
{
_title = value.length() > 21 ? value.substring(0, 20) : value;
_title = value;
}
}