Package games.stendhal.common

Examples of games.stendhal.common.FeatureList.decode()


    if (player.has("features")) {
      logger.info("Converting features for " + player.getName() + ": "
          + player.get("features"));

      final FeatureList features = new FeatureList();
      features.decode(player.get("features"));

      for (final String name : features) {
        player.setFeature(name, features.get(name));
      }
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.