RequestFortressSiegeInfo.java 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /*
  2. * This program is free software: you can redistribute it and/or modify it under
  3. * the terms of the GNU General Public License as published by the Free Software
  4. * Foundation, either version 3 of the License, or (at your option) any later
  5. * version.
  6. *
  7. * This program is distributed in the hope that it will be useful, but WITHOUT
  8. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  9. * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
  10. * details.
  11. *
  12. * You should have received a copy of the GNU General Public License along with
  13. * this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. package net.sf.l2j.gameserver.clientpackets;
  16. /**
  17. *
  18. * @author KenM
  19. */
  20. public class RequestFortressSiegeInfo extends L2GameClientPacket
  21. {
  22. /**
  23. * @see net.sf.l2j.gameserver.clientpackets.L2GameClientPacket#getType()
  24. */
  25. @Override
  26. public String getType()
  27. {
  28. return "[C] D0:42 RequestFortressSiegeInfo";
  29. }
  30. /**
  31. * @see net.sf.l2j.gameserver.clientpackets.L2GameClientPacket#readImpl()
  32. */
  33. @Override
  34. protected void readImpl()
  35. {
  36. // trigger
  37. }
  38. /**
  39. * @see net.sf.l2j.gameserver.clientpackets.L2GameClientPacket#runImpl()
  40. */
  41. @Override
  42. protected void runImpl()
  43. {
  44. // send ExShowFortressSiegeInfo for fortress that are under siege now
  45. }
  46. }