Package marauroa.common.game

Examples of marauroa.common.game.IRPZone.modify()


   *            the object that has been modified.
   */
  public void modify(RPObject object) {
    IRPZone zone = zones.get(new IRPZone.ID(object.get("zoneid")));
    if (zone != null) {
      zone.modify(object);
    } else {
      logger.warn("calling RPWorld.modify on a zoneless object: " + object + " parent: " + object.getContainerBaseOwner(), new Throwable());
    }
  }

View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.