Fix incorrect descriptions

This commit is contained in:
Sam 2017-07-24 15:40:15 +01:00
parent 23373834a2
commit e8eb364d99
3 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ public class KitHumanPaladin extends KitCastleSiege
giveEffect("Resistance II")
},
{
"Take " + C.cGreen + "40%" + C.cWhite + " less damage from attacks",
C.cWhite + "Take " + C.cGreen + "40%" + C.cWhite + " less damage from attacks",
giveEffect("Health Boost II")
}
};

View File

@ -23,7 +23,7 @@ public class KitUndeadSummoner extends KitCastleSiege
private static final String[] DESCRIPTION = {
"I hope Im not bugging you.",
"",
click(false, "your axe to use " + C.cGreen + "Ghoul Leap"),
click(false, "your potions to spawn undead mobs to help you fight")
};
private static final String REDUCE_COOLDOWN = reduceCooldown("Undead Potions", 2);

View File

@ -392,7 +392,7 @@ public abstract class ProgressingKit extends Kit implements ProgressiveKit
public static String reduceCooldown(String perk, double time)
{
return C.cWhite + "Reduce the cooldown of " + C.cGreen + perk + C.cWhite + " by " + C.cGreen + time + C.cWhite + " seconds" + (time == 1 ? "" : "s") + ".";
return C.cWhite + "Reduce the cooldown of " + C.cGreen + perk + C.cWhite + " by " + C.cGreen + time + C.cWhite + " second" + (time == 1 ? "" : "s") + ".";
}
public static String increaseNumber(String perk, String increasing, double value, String data)