From ffe1e11d11cce3fb48e019e97327c8860f43a1ef Mon Sep 17 00:00:00 2001 From: randy Date: Fri, 6 Dec 2024 08:05:40 -0700 Subject: [PATCH] Traps with a catch now last 10 minutes instead of 1 --- Server/src/main/content/global/skill/hunter/TrapSetting.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Server/src/main/content/global/skill/hunter/TrapSetting.java b/Server/src/main/content/global/skill/hunter/TrapSetting.java index ec0f87ba3..421a982bf 100644 --- a/Server/src/main/content/global/skill/hunter/TrapSetting.java +++ b/Server/src/main/content/global/skill/hunter/TrapSetting.java @@ -306,7 +306,7 @@ public class TrapSetting { case 3: handleCatch(counter, wrapper, node, npc, success); if (success) { - wrapper.setTicks(GameWorld.getTicks() + 100); + wrapper.setTicks(GameWorld.getTicks() + 1000); wrapper.setReward(node); wrapper.setObject(getFinalId(wrapper, node)); switch(wrapper.getType()) {