Package games.stendhal.server.entity.mapstuff.portal

Examples of games.stendhal.server.entity.mapstuff.portal.Gate


  }

  @Override
  public void perform(final Player player, final RPAction action) {
    if ("gate".equals(action.get(CREATURE))) {
      final Gate gate = new Gate();
      gate.setPosition(action.getInt(X), action.getInt(Y));
      player.getZone().add(gate);
      return;
    }

    try {
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.mapstuff.portal.Gate

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.