From 412aca056fefa3ea69842c2ddeae0f4a5075b40b Mon Sep 17 00:00:00 2001 From: RealMangoRage <64402114+RealMangorage@users.noreply.github.com> Date: Thu, 16 May 2024 19:00:06 -0700 Subject: [PATCH] Fixed minor issue... --- build.gradle | 2 +- .../org/mangorage/mangobot/modules/tricks/TrickCommand.java | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 143ea1a..adc7a78 100644 --- a/build.gradle +++ b/build.gradle @@ -67,7 +67,7 @@ dependencies { testImplementation 'org.junit.jupiter:junit-jupiter' installer('org.mangorage:installer:3.0.22') - bot('org.mangorage:mangobot:10.0.384') + bot('org.mangorage:mangobot:10.0.385') library('org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5') library('org.kohsuke:github-api:1.321') diff --git a/src/main/java/org/mangorage/mangobot/modules/tricks/TrickCommand.java b/src/main/java/org/mangorage/mangobot/modules/tricks/TrickCommand.java index bcf4b91..cf13ce3 100644 --- a/src/main/java/org/mangorage/mangobot/modules/tricks/TrickCommand.java +++ b/src/main/java/org/mangorage/mangobot/modules/tricks/TrickCommand.java @@ -48,6 +48,7 @@ public class TrickCommand implements IBasicCommand { private final DataHandler TRICK_DATA_HANDLER = DataHandler.create() .path("data/tricksV2") + .maxDepth(3) .build(Trick.class); private final Map> TRICKS = new HashMap<>();