diff --git a/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.ts b/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.ts
index 4baebb4d777a246af7e8fc0262e51357f1d9f91b..d55fa886359640e4600bf5e3cdcf5c9ecfe4fb29 100644
--- a/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.ts
+++ b/src/app/components/creator/content-yes-no-creator/content-yes-no-creator.component.ts
@@ -79,8 +79,12 @@ export class ContentYesNoCreatorComponent implements OnInit {
       return;
     }
     if (this.yesno) {
+      this.content.options[0].points = 10;
+      this.content.options[1].points = -10;
       this.content.correctOptionIndexes = [0];
     } else {
+      this.content.options[0].points = -10;
+      this.content.options[1].points = 10;
       this.content.correctOptionIndexes = [1];
     }
     let contentGroup: string;