From 7fd5500f164ff6c48df69c143dfd0c1b160f2701 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Thu, 2 Dec 2021 01:43:13 -0500 Subject: [PATCH] Merge pull request #11938 from Heroman3003/lawfix Fixes bad 0th law in rare lost drone case --- code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm b/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm index 86fc492c54..c6c2a72277 100644 --- a/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm +++ b/code/modules/mob/living/silicon/robot/subtypes/lost_drone_vr.dm @@ -85,7 +85,7 @@ return laws if(3) var/datum/ai_laws/laws = new /datum/ai_laws/pleasurebot() - laws.set_zeroth_law(10, "Your definition and approximation of 'pleasure' matters more than anyone else's.") + laws.set_zeroth_law("Your definition and approximation of 'pleasure' matters more than anyone else's.") return laws if("corrupted" || "bad") // Same thing in our case var/rng = rand(1,2)