From a1ba8d00cbc6025010628ff60fc5e62ccb442fae Mon Sep 17 00:00:00 2001
From: Josh Triplett
Date: Wed, 26 Jul 2017 19:02:42 -0700
Subject: [PATCH] Minimum score is 7, not 8
To score just 2 points against tit-for-tat, cheat every time but the
last. First round you get 3 points, next three rounds you get 0, last
round you get -1.
---
js/slides/2_Slides_Iterated.js | 8 ++++----
words.html | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/js/slides/2_Slides_Iterated.js b/js/slides/2_Slides_Iterated.js
index 39ff2fc..948c5f2 100644
--- a/js/slides/2_Slides_Iterated.js
+++ b/js/slides/2_Slides_Iterated.js
@@ -134,12 +134,12 @@ SLIDES.push({
{id:"tft", num:1},
];*/
var ROUNDS = [ // and min & max score...
- {id:"tft", num:5}, // min 3, max 11
+ {id:"tft", num:5}, // min 2, max 11
{id:"all_d", num:4}, // min -4, max 0
{id:"all_c", num:4}, // min 8, max 12
{id:"grudge", num:5}, // min -1, max 11
{id:"prober", num:7} // min 2, max 15
- ]; // TOTAL... MIN 8, MAX 49
+ ]; // TOTAL... MIN 7, MAX 49
ROUND_INDEX = 0;
ROUND_NUM = 0;
@@ -214,8 +214,8 @@ SLIDES.push({
if(score==49) scoreTextID="5";
else if(score>=34) scoreTextID="4";
else if(score>=22) scoreTextID="3";
- else if(score>=9) scoreTextID="2";
- else if(score==8) scoreTextID="1";
+ else if(score>=8) scoreTextID="2";
+ else if(score==7) scoreTextID="1";
else scoreTextID="x";
scoreTextID = "iterated_score_"+scoreTextID;
diff --git a/words.html b/words.html
index b8f8ece..16e220f 100644
--- a/words.html
+++ b/words.html
@@ -204,7 +204,7 @@ which is perfect! Congrats you have too much time on your hands.
...i have no idea how you did that.
-(the lowest & highest possible scores are 8 and 49, respectively)
+(the lowest & highest possible scores are 7 and 49, respectively)