Package com.sk89q.craftbook.mechanics.drops.rewards

Examples of com.sk89q.craftbook.mechanics.drops.rewards.MonetaryDropReward


                    if(rewardType.equalsIgnoreCase("money")) {

                        double amount = config.getDouble("custom-drops." + key + ".rewards." + reward + ".amount", 10);

                        dropReward = new MonetaryDropReward(reward, amount);
                    }

                    if(dropReward == null) continue;

                    rewards.add(dropReward);
View Full Code Here

TOP

Related Classes of com.sk89q.craftbook.mechanics.drops.rewards.MonetaryDropReward

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.