Skip to content

Commit

Permalink
Increase item entity mixin priority
Browse files Browse the repository at this point in the history
Fixes #94 with the Go Fish! mod installed
  • Loading branch information
62832 committed Dec 12, 2023
1 parent c4fec60 commit 56e616d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

import gripe._90.megacells.misc.LavaTransformLogic;

@Mixin(ItemEntity.class)
@Mixin(value = ItemEntity.class, priority = 500)
public abstract class ItemEntityMixin extends Entity {
@SuppressWarnings("unused")
public ItemEntityMixin(EntityType<?> type, Level level) {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencyResolutionManagement {
plugin("loom", "dev.architectury.loom").version("1.4-SNAPSHOT")
plugin("architectury", "architectury-plugin").version("3.4-SNAPSHOT")
plugin("shadow", "com.github.johnrengelman.shadow").version("8.1.1")
plugin("spotless", "com.diffplug.spotless").version("6.22.0")
plugin("spotless", "com.diffplug.spotless").version("6.23.3")

val minecraftVersion = "1.20.1"
version("minecraft", minecraftVersion)
Expand Down

0 comments on commit 56e616d

Please sign in to comment.