Get the lowest stat value in the purchase mode stat table. @return purchase score minimum
()
| 1326 | * @return purchase score minimum |
| 1327 | */ |
| 1328 | public int getPurchaseScoreMin() |
| 1329 | { |
| 1330 | if (pointBuyStatCosts == null) |
| 1331 | { |
| 1332 | return -1; |
| 1333 | } |
| 1334 | |
| 1335 | return pointBuyStatCosts.firstKey(); |
| 1336 | } |
| 1337 | |
| 1338 | /** |
| 1339 | * Get the minimum score you can purchase. |
no test coverage detected