fixing another compile error

This commit is contained in:
nossr50 2019-04-15 15:51:29 -07:00
parent f09007b60c
commit c69a9fc299

View File

@ -1,3 +1,4 @@
/*
package com.gmail.nossr50.datatypes.skills.properties;
import com.gmail.nossr50.datatypes.skills.SubSkillType;
@ -8,11 +9,13 @@ public class MaxBonusLevel extends AbstractScalingProperty {
super(subSkillType);
}
/**
*/
/**
* Returns the appropriate value for this scaling property whether it is Standard or Retro
*
* @return the value used in scaling calculations for this ScalingProperty
*/
*//*
@Override
public double getValue() {
if(mcMMO.getConfigManager().isRetroMode())
@ -23,3 +26,4 @@ public class MaxBonusLevel extends AbstractScalingProperty {
}
}
}
*/