Package games.stendhal.server.entity.slot

Examples of games.stendhal.server.entity.slot.KeyedSlot


      // Port from 0.44 to 0.50: !buddy
      // Port from 0.56 to 0.56.1: !ignore
      // Port from 0.57 to 0.58: skills
      for (final String slotName : slotsSpecial) {
        if (!object.hasSlot(slotName)) {
          object.addSlot(new KeyedSlot(slotName));
        }
        final RPSlot slot = object.getSlot(slotName);
        if (slot.size() == 0) {
          final RPObject singleObject = new RPObject();
          slot.add(singleObject);
View Full Code Here

TOP

Related Classes of games.stendhal.server.entity.slot.KeyedSlot

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.