Package games.stendhal.server.core.engine.dbcommand

Examples of games.stendhal.server.core.engine.dbcommand.DeletePendingAchievementDetailsCommand


    updateItemLoots(player, command.getDetails("item.set.red"));

    // Could also check for reached achievements here. This is also checked on login but the order may vary due to the async access?
   
    // delete the entries. We don't need feedback
    DBCommand deletecommand = new DeletePendingAchievementDetailsCommand(player);
    DBCommandQueue.get().enqueue(deletecommand);
   
  }
View Full Code Here

TOP

Related Classes of games.stendhal.server.core.engine.dbcommand.DeletePendingAchievementDetailsCommand

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.