Replace the token, but deliberately skip the math @param aPC The PC being exported @param aString the string which will have its tokens replaced @param output the object that represents the sheet we are exporting
(PlayerCharacter aPC, String aString, BufferedWriter output)
| 176 | * @param output the object that represents the sheet we are exporting |
| 177 | */ |
| 178 | public void replaceTokenSkipMath(PlayerCharacter aPC, String aString, BufferedWriter output) |
| 179 | { |
| 180 | final boolean oldSkipMath = skipMath; |
| 181 | skipMath = true; |
| 182 | replaceToken(aString, output, aPC); |
| 183 | skipMath = oldSkipMath; |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Exports the contents of the given PlayerCharacter to a Writer |