Skip to content

Commit

Permalink
Make tests pass and update to dough pr
Browse files Browse the repository at this point in the history
  • Loading branch information
WalshyDev committed Sep 9, 2024
1 parent 8489904 commit e01e115
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 5 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -345,8 +345,6 @@
</dependencyManagement>

<dependencies>


<!-- Development dependencies -->
<dependency>
<groupId>com.google.code.findbugs</groupId>
Expand All @@ -357,9 +355,9 @@

<!-- Shaded packages -->
<dependency>
<groupId>com.github.baked-libs.dough</groupId>
<groupId>com.github.EpicPlayerA10.dough</groupId>
<artifactId>dough-api</artifactId>
<version>baf2d79f62</version>
<version>66870dd295</version>
<scope>compile</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -389,9 +387,9 @@
</dependency>
<!-- This needs to be before Spigot because MockBukkit will fail otherwise. -->
<dependency>
<groupId>com.github.seeseemelk</groupId>
<artifactId>MockBukkit-v1.20</artifactId>
<version>3.93.2</version>
<groupId>com.github.MockBukkit</groupId>
<artifactId>MockBukkit</artifactId>
<version>c7cc678834</version>
<scope>test</scope>

<exclusions>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ public EnchantmentRune(ItemGroup itemGroup, SlimefunItemStack item, RecipeType r
super(itemGroup, item, recipeType, recipe);

for (Material mat : Material.values()) {
if (Slimefun.instance().isUnitTest() && mat.isLegacy()) continue;

List<Enchantment> enchantments = new ArrayList<>();

for (Enchantment enchantment : Enchantment.values()) {
Expand Down

0 comments on commit e01e115

Please sign in to comment.