Updating Unarmed (WIP)

This commit is contained in:
GJ
2012-06-14 21:10:47 -04:00
parent 1014316581
commit 77b4aaa50d
6 changed files with 210 additions and 2 deletions

View File

@ -264,6 +264,7 @@ public class Misc {
* @return whichever value is lower
*/
public static int skillCheck(int skillLevel, int maxLevel) {
//TODO: Could we just use Math.min(skillLevel, maxLevel) here?
if (skillLevel > maxLevel) {
return maxLevel;
}
@ -288,3 +289,4 @@ public class Misc {
}
}
}