Replaced hex values at ExMentorList with simple integers.
This commit is contained in:
parent
3d32489fba
commit
a44b68a5d6
@ -39,12 +39,12 @@ public class ExMentorList extends ServerPacket
|
||||
{
|
||||
if (player.isMentor())
|
||||
{
|
||||
_type = 0x01;
|
||||
_type = 1;
|
||||
_mentees = MentorManager.getInstance().getMentees(player.getObjectId());
|
||||
}
|
||||
else if (player.isMentee())
|
||||
{
|
||||
_type = 0x02;
|
||||
_type = 2;
|
||||
_mentees = Arrays.asList(MentorManager.getInstance().getMentor(player.getObjectId()));
|
||||
}
|
||||
else if (player.isInCategory(CategoryType.SIXTH_CLASS_GROUP)) // Not a mentor, Not a mentee, so can be a mentor
|
||||
|
Loading…
Reference in New Issue
Block a user