Added new XP perk - 10% boost

Adds #1698
This commit is contained in:
TfT_02
2014-01-18 23:08:40 +01:00
parent de912c1e07
commit c27d79cf25
4 changed files with 77 additions and 1 deletions

View File

@@ -59,6 +59,9 @@ public final class PerksUtils {
else if (Permissions.oneAndOneHalfXp(player, skill)) {
xp *= 1.5;
}
else if (Permissions.oneAndOneTenthXp(player, skill)) {
xp *= 1.1;
}
return xp;
}