diff --git a/src/app/game-model/gamesystems/conditions/ScriptAccountCondition.ts b/src/app/game-model/gamesystems/conditions/ScriptAccountCondition.ts index 9284c5a..5592421 100644 --- a/src/app/game-model/gamesystems/conditions/ScriptAccountCondition.ts +++ b/src/app/game-model/gamesystems/conditions/ScriptAccountCondition.ts @@ -17,7 +17,7 @@ export class ScriptAccountCondition { } extendCondition(condition: ScriptAccountCondition) { - if(!this.isContradicting(condition)) { + if(!this.isContradicting(condition) && this.scriptAccount === condition.scriptAccount) { this.minValue = Math.min(this.minValue, condition.minValue); this.maxValue = Math.max(this.maxValue, condition.maxValue); }