From f059f8fce5a9e1a5c4da2d62319a4db0964a0e3b Mon Sep 17 00:00:00 2001 From: Lulu13022002 <41980282+Lulu13022002@users.noreply.github.com> Date: Sat, 24 Sep 2022 18:34:20 +0200 Subject: [PATCH] Fix setEggCount method from TurtleLayEggEvent (#8385) --- patches/api/Turtle-API.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/api/Turtle-API.patch b/patches/api/Turtle-API.patch index f7dcdfa085..b1cffde761 100644 --- a/patches/api/Turtle-API.patch +++ b/patches/api/Turtle-API.patch @@ -129,7 +129,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000 + cancelled = true; + return; + } -+ eggCount = Math.min(eggCount, 4); ++ this.eggCount = Math.min(eggCount, 4); + } + + @Override