From 8260b2fc85281fcf006d17c79aee6e1be7ccd088 Mon Sep 17 00:00:00 2001 From: Cekis Date: Mon, 13 May 2019 16:12:34 -0700 Subject: [PATCH] Fixed fish filet issue where it gives you resources from other planets --- sku.0/sys.server/compiled/game/script/library/minigame.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sku.0/sys.server/compiled/game/script/library/minigame.java b/sku.0/sys.server/compiled/game/script/library/minigame.java index af4b17db6..ca2ad0043 100755 --- a/sku.0/sys.server/compiled/game/script/library/minigame.java +++ b/sku.0/sys.server/compiled/game/script/library/minigame.java @@ -1471,7 +1471,7 @@ public class minigame extends script.base_script } if (resourceAmt > 0) { - String resourceType = params.getString(COL_RESOURCE_TYPE); + String resourceType = params.getString(COL_RESOURCE_TYPE) + "_" + castLoc.area; if (resourceType != null && !resourceType.equals("")) { resource.createRandom(resourceType, resourceAmt, castLoc, fish, player, 1);