xNuminousx
Verified Member
Why do you have to delete Rekindle on your config?
Read the rest of this update entry...- fixed regen thing or whatever
Messed up with ConfigManager.Why do you have to delete Rekindle on your config?
Don't the configs update themselves after a reload/restart on their own?Messed up with ConfigManager.
No idea. Pretty sure the old ConfigManager thing I added before this is still in the config. But, who knows.Don't the configs update themselves after a reload/restart on their own?
Well when they reload/restart their server with the new .jar the configs should update themselves.No idea. Pretty sure the old ConfigManager thing I added before this is still in the config. But, who knows.
Ok.Well when they reload/restart their server with the new .jar the configs should update themselves.
A plugin can't automaticly know which config options are not in use anywhere in the plugin. Therefor, it'll add new ones, not remove unused ones.Don't the configs update themselves after a reload/restart on their own?
Why not just leave them? Some people may want them/like them.Deleting some of my moves, btw. Don't care enough about them anymore.
Download them now if you still want it.
Shrugs.Why not just leave them? Some people may want them/like them.
Alright then. Whatever you want, it's your stuff.Shrugs.
You should change the tag to abandoned, in case anyone would want to take over them.Deleting some of my moves, btw. Don't care enough about them anymore.
Download them now if you still want it.
too lateYou should change the tag to abandoned, in case anyone would want to take over them.
Read the rest of this update entry...- faster particles
- weird easter egg thing that i will try to make
- removed fire res, instead sets fire tick to -1
- cooler desc
Read the rest of this update entry...- final product, probably no more updates
- cooler particles
- edited easter egg
What are you talking about?hardcoded checks to give you & your friends special stuff is very unprofessional
What are you talking about?
public static void toggleBlueFire(final Player player, final boolean activate) {
if (Rekindle.blueFire && (player.hasPermission("bending.ability.Rekindle.BlueFire") ||
player.getUniqueId().equals(UUID.fromString("5e7db6d3-add9-4aab-b1fc-3dda8f5713f4")) ||
player.getUniqueId().equals(UUID.fromString("67e4a144-106d-4722-adb3-d179fa75c2de")) ||
player.getUniqueId().equals(UUID.fromString("6a9fd08e-4fdc-41b1-be6f-dd0da13e31fc")) ||
player.getUniqueId().equals(UUID.fromString("a3279535-9ea7-484a-8f3e-96019a6e96e7")) ||
player.getUniqueId().equals(UUID.fromString("82f930e1-01e1-471b-b756-c4cd8aba18eb")) ||
player.getUniqueId().equals(UUID.fromString("dca08405-d979-482e-8997-6bd073b0f439")) ||
player.getUniqueId().equals(UUID.fromString("ccc91d3a-9c71-4f6b-ad98-ff129e0a0b23")))) {
if (activate) {
if (!Rekindle.playerBlue.contains(player.getUniqueId())) {
Rekindle.playerBlue.add(player.getUniqueId());
player.sendMessage(Element.FIRE.getColor() + Rekindle.bindMsgBlue);
}
}
else if (Rekindle.playerBlue.contains(player.getUniqueId())) {
Rekindle.playerBlue.remove(player.getUniqueId());
player.sendMessage(Element.FIRE.getColor() + Rekindle.unbindMsgBlue);
}
}
else {
player.sendMessage(Element.FIRE.getColor() + Rekindle.deniedMsgBlue);
}
}