Examples of ResidenceRenameEvent


Examples of com.bekvon.bukkit.residence.event.ResidenceRenameEvent

                if (residences.containsKey(newName)) {
                    if (player != null)
                        player.sendMessage(ChatColor.RED + Residence.getLanguage().getPhrase("ResidenceAlreadyExists", ChatColor.YELLOW + newName + ChatColor.RED));
                    return false;
                }
                ResidenceRenameEvent resevent = new ResidenceRenameEvent(res, newName, oldName);
                Residence.getServ().getPluginManager().callEvent(resevent);
                removeChunkList(oldName);
                residences.put(newName, res);
                residences.remove(oldName);
                calculateChunks(newName);
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.