From d10efcf0c07a36fab88178c3f5cdbbff876539ff Mon Sep 17 00:00:00 2001
From: Pregmodder <pregmodder@gmail.com>
Date: Mon, 5 Jul 2021 18:14:24 -0400
Subject: [PATCH] object, not array

---
 src/events/RE/REBusyDairy.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/events/RE/REBusyDairy.js b/src/events/RE/REBusyDairy.js
index b8a564dd8e7..69311316df2 100644
--- a/src/events/RE/REBusyDairy.js
+++ b/src/events/RE/REBusyDairy.js
@@ -29,7 +29,7 @@ App.Events.REBusyDairy = class REBusyDairy extends App.Events.BaseEvent {
 			cashX(-1000, "event");
 			for (const slave of dairySlaves) {
 				slave.devotion += 4;
-				SimpleSexAct.Slaves(slave, dairySlaves.filter(s => s.ID !== slave.ID).shuffle());
+				SimpleSexAct.Slaves(slave, dairySlaves.filter(s => s.ID !== slave.ID).random());
 				if (slave.actualAge < 24) {
 					SimpleSexAct.Player(slave);
 				} else {
-- 
GitLab