Title length adjustment for players.
This commit is contained in:
@@ -2323,7 +2323,7 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe
|
||||
}
|
||||
else
|
||||
{
|
||||
_title = value.length() > 21 ? value.substring(0, 20) : value;
|
||||
_title = isPlayer() && (value.length() > 21) ? value.substring(0, 20) : value;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user