diff --git a/src/events/scheduled/burst/burst.js b/src/events/scheduled/burst/burst.js
index 032dabad99b14f55b628b062129959e08a03da5a..dc4ac6280d16483751caefc6c09df3dcedadc04b 100644
--- a/src/events/scheduled/burst/burst.js
+++ b/src/events/scheduled/burst/burst.js
@@ -42,7 +42,7 @@ globalThis.allBursts = function() {
 		} else {
 			r.push(`Blood leaks`);
 		}
-		(`from ${his} rear as ${his} body cavity fills with the contents of ${his} digestive tract. The skin of ${his} taut belly reddens as the pressure against it builds. As ${he} takes ${his} last breath, ${he} falls forward, ${his} weight landing upon ${his} straining stomach. With a gush, ${he} ruptures, flooding the area around ${him} with`);
+		r.push(`from ${his} rear as ${his} body cavity fills with the contents of ${his} digestive tract. The skin of ${his} taut belly reddens as the pressure against it builds. As ${he} takes ${his} last breath, ${he} falls forward, ${his} weight landing upon ${his} straining stomach. With a gush, ${he} ruptures, flooding the area around ${him} with`);
 		if (slave.inflation !== 0) {
 			r.push(`blood, guts and ${slave.inflationType}.`);
 		} else {
diff --git a/src/npc/generate/generateGenetics.js b/src/npc/generate/generateGenetics.js
index b82db10c716b1cb9bb415da7564614ab7ecd11cb..d93fcd38fb86badb5b8859aa265ebeaa684e05ea 100644
--- a/src/npc/generate/generateGenetics.js
+++ b/src/npc/generate/generateGenetics.js
@@ -1483,7 +1483,7 @@ function setSlaveName(child, genes) {
  */
 function makeAlbinismOverride(race) {
 	let albinismOverride = {
-		skin: 0,
+		skin: "pure white",
 		eyeColor: "red",
 		hColor: "white"
 	};
@@ -1505,8 +1505,6 @@ function makeAlbinismOverride(race) {
 		case "white":
 			albinismOverride.skin = "pure white";
 			break;
-		default:
-			albinismOverride.skin = "pure white";
 	}
 	return albinismOverride;
 }
diff --git a/src/npc/generate/generateMarketSlave.js b/src/npc/generate/generateMarketSlave.js
index 0830bd1fd439323839fb2cd0db9879761ea6f4e1..945b9f4c5d57b0e4c91e253d2404144f1dea165f 100644
--- a/src/npc/generate/generateMarketSlave.js
+++ b/src/npc/generate/generateMarketSlave.js
@@ -668,7 +668,6 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 					slave.trust -= jsRandom(0, 10);
 				}
 				if (jsRandom(1, 100) > 90) {
-					// one in twenty slaves has only one blind eye.
 					if (jsRandom(1, 20) > 1) {
 						if (jsRandom(1, 2) === 1) {
 							eyeSurgery(slave, "left", "blind");
@@ -676,7 +675,7 @@ globalThis.generateMarketSlave = function(market = "kidnappers", numArcology = 1
 							eyeSurgery(slave, "right", "blind");
 						}
 					} else {
-						eyeSurgery(slave, "blind", "blind");
+						eyeSurgery(slave, "both", "blind");
 					}
 				}
 				if (jsRandom(1, 100) > 90) {