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