Moving this check up

This commit is contained in:
nossr50 2013-02-18 15:28:18 -08:00
parent cf0f075acb
commit 45fbb47ccf
2 changed files with 5 additions and 5 deletions

View File

@ -65,6 +65,10 @@ public class McMMOPlayer {
* @param xp Experience amount to process
*/
public void beginXpGain(SkillType skillType, int xp) {
if (xp == 0) {
return;
}
// Return if the experience has been shared
if (party != null && ShareHandler.handleXpShare(xp, this, skillType)) {
return;
@ -82,10 +86,6 @@ public class McMMOPlayer {
public void beginUnsharedXpGain(SkillType skillType, int xp) {
xp = modifyXpGain(skillType, xp);
if (xp == 0) {
return;
}
applyXpGain(skillType, xp);
}