Set the purchase mode method name. @param argMethodName
(final String argMethodName)
| 1207 | * @param argMethodName |
| 1208 | */ |
| 1209 | public void setPurchaseMethodName(final String argMethodName) |
| 1210 | { |
| 1211 | if (!argMethodName.isEmpty()) |
| 1212 | { |
| 1213 | setRollMethod(Constants.CHARACTER_STAT_METHOD_PURCHASE); |
| 1214 | } |
| 1215 | |
| 1216 | purchaseMethodName = argMethodName; |
| 1217 | gamemodePrefsContext.setProperty("purchaseMethodName", argMethodName); //$NON-NLS-1$ |
| 1218 | } |
| 1219 | |
| 1220 | /** |
| 1221 | * Get the highest stat score that can be purchased free. |
no test coverage detected