diff --git a/src/npc/surgery/organs.js b/src/npc/surgery/organs.js
index 4ba2ea64284524b03b78b51d3e1c20ed81453c3a..3e0b26555e1b8ecd3b62b42fa08749860d09e60e 100644
--- a/src/npc/surgery/organs.js
+++ b/src/npc/surgery/organs.js
@@ -202,7 +202,7 @@ App.Medicine.OrganFarm.init = function() {
 		type: "leftEye", name: "Left Eye", cost: 5000, time: 10,
 		actions: [
 			new App.Medicine.OrganFarm.OrganImplantAction({
-				name: "Implant", healthImpact: 10, surgeryType: "newEyes",
+				name: "Implant", healthImpact: 10, surgeryType: "unblind",
 				canImplant: s => (getLeftEyeVision(s) === 0 && getLeftEyeType(s) !== 2),
 				implantError: () => "Slave has a working left eye.",
 				implant: s => {
@@ -224,7 +224,7 @@ App.Medicine.OrganFarm.init = function() {
 		type: "rightEye", name: "Right Eye", cost: 5000, time: 10,
 		actions: [
 			new App.Medicine.OrganFarm.OrganImplantAction({
-				name: "Implant", healthImpact: 10, surgeryType: "newEyes",
+				name: "Implant", healthImpact: 10, surgeryType: "unblind",
 				canImplant: s => (getRightEyeVision(s) === 0 && getRightEyeType(s) !== 2),
 				implantError: () => "Slave has a working right eye.",
 				implant: s => {