Examples of PreSocketEnhancementEvent


Examples of us.deathmarine.diablodrops.events.PreSocketEnhancementEvent

                  if ((fuelColor == socketColor)
                      || (socketColor == null)
                      || (socketColor == ChatColor.RESET)
                      || (socketColor == ChatColor.DARK_PURPLE)
                      || (socketColor == ChatColor.ITALIC)) {
                    PreSocketEnhancementEvent psee = new PreSocketEnhancementEvent(
                        tis, event.getFuel(), furn);
                    plugin.getServer().getPluginManager()
                        .callEvent(psee);
                    if (psee.isCancelled()) {
                      return;
                    }
                    plugin.furnanceMap.put(
                        event.getBlock(),
                        event.getFuel());
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.