Examples of MonetaryDropReward


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
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.