(String tokenSource, PlayerCharacter pc, ExportHandler eh)
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public String getToken(String tokenSource, PlayerCharacter pc, ExportHandler eh) |
| 47 | { |
| 48 | DecimalFormatSymbols decimalFormatSymbols = new DecimalFormatSymbols(Locale.US); |
| 49 | NumberFormat decimalFormat = new DecimalFormat("#,##0.##", decimalFormatSymbols); |
| 50 | return decimalFormat.format(getGoldToken(pc)); |
| 51 | } |
| 52 | |
| 53 | /** |
| 54 | * Retrieve the amount of money that the character has. |
nothing calls this directly
no test coverage detected