Get the highest stat value in the purchase mode stat table. @return purchase mode maximum
()
| 1285 | * @return purchase mode maximum |
| 1286 | */ |
| 1287 | public int getPurchaseScoreMax() |
| 1288 | { |
| 1289 | if (pointBuyStatCosts == null) |
| 1290 | { |
| 1291 | return -1; |
| 1292 | } |
| 1293 | |
| 1294 | return pointBuyStatCosts.lastKey(); |
| 1295 | } |
| 1296 | |
| 1297 | /** |
| 1298 | * Get the maximum score you can purchase. |
no test coverage detected