Updated instancezone command.

This commit is contained in:
MobiusDev
2017-11-13 20:23:01 +00:00
parent cf939ad6a9
commit 6a9564a324
4 changed files with 7 additions and 5 deletions

View File

@@ -30,6 +30,6 @@ public final class InstanceZoneInfo implements IPlayerActionHandler
@Override
public void useAction(L2PcInstance activeChar, ActionDataHolder data, boolean ctrlPressed, boolean shiftPressed)
{
activeChar.sendPacket(new ExInzoneWaiting(activeChar));
activeChar.sendPacket(new ExInzoneWaiting(activeChar, false));
}
}

View File

@@ -44,7 +44,7 @@ public class InstanceZone implements IUserCommandHandler
{
return false;
}
activeChar.sendPacket(new ExInzoneWaiting(activeChar));
activeChar.sendPacket(new ExInzoneWaiting(activeChar, false));
return true;
}
}