Fixed free teleport bookmark slot conditions.

Contributed by Edoo.
This commit is contained in:
MobiusDevelopment
2019-11-06 12:22:02 +00:00
parent 2a1459d484
commit a644d564fc
30 changed files with 30 additions and 30 deletions

View File

@ -43,7 +43,7 @@ public class ConditionPlayerHasFreeTeleportBookmarkSlots extends Condition
return false;
}
if ((player.getBookMarkSlot() + _teleportBookmarkSlots) > 9)
if ((player.getBookMarkSlot() + _teleportBookmarkSlots) > 18)
{
player.sendPacket(SystemMessageId.YOUR_NUMBER_OF_MY_TELEPORTS_SLOTS_HAS_REACHED_ITS_MAXIMUM_LIMIT);
return false;