Get the load multiplier @param encumbranceType @return load multiplier
(String encumbranceType)
| 191 | * @return load multiplier |
| 192 | */ |
| 193 | public Float getLoadMultiplier(String encumbranceType) |
| 194 | { |
| 195 | if (loadMultiplierMap.containsKey(encumbranceType)) |
| 196 | { |
| 197 | return loadMultiplierMap.get(encumbranceType).multiplier(); |
| 198 | } |
| 199 | return null; |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * Get the load move formula |
no test coverage detected