Change the way conditions with values are handled

This commit is contained in:
kyamsil
2021-08-01 22:48:08 +01:00
parent 6c840cbf59
commit 3a52ed28b4
3 changed files with 49 additions and 52 deletions

View File

@@ -242,13 +242,13 @@ export class TokenHelper{
}
/* PF2E */
getValuedCondition(token,condition) {
return this.system.getValuedCondition(token,condition);
getConditionValue(token,condition) {
return this.system.getConditionValue(token,condition);
}
/* PF2E */
modifyValuedCondition(token,condition,delta) {
return this.system.modifyValuedCondition(token,condition,delta);
modifyConditionValue(token,condition,delta) {
return this.system.modifyConditionValue(token,condition,delta);
}
/**