Fixing these infinite recursing methods

Oops, that was silly. Thanks @t00thpick1
This commit is contained in:
TfT_02 2013-09-30 19:38:22 +02:00
parent c72ead9d0a
commit 9c6d1ce020

View File

@ -50,7 +50,7 @@ public final class ExperienceAPI {
@Deprecated @Deprecated
public static void addRawXP(Player player, String skillType, int XP) { public static void addRawXP(Player player, String skillType, int XP) {
addRawXP(player, skillType, XP); addRawXP(player, skillType, (float) XP);
} }
/** /**
@ -70,7 +70,7 @@ public final class ExperienceAPI {
@Deprecated @Deprecated
public static void addRawXPOffline(String playerName, String skillType, int XP) { public static void addRawXPOffline(String playerName, String skillType, int XP) {
addRawXPOffline(playerName, skillType, XP); addRawXPOffline(playerName, skillType, (float) XP);
} }
/** /**