-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
31 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
- fixed random crashes when starting the game (reported by @Kazuya) | ||
- fixed bug with spawn point features not working properly with Respawn Anchors | ||
- fixed bug with item damage modifications not working properly (reported by @Camawama) | ||
- fixed compatibility issue that caused 1 item to be taken from the stack when hitting mobs (reported by @Camawama) | ||
- optimized spawn point features | ||
- added compatibility with Aquaculture 2 for fishing related features (reported by @JinKhya, @Ladocterus) | ||
- added compatibility with MC Dungeons Weapons for damage related features (reported by @mochalit) | ||
- fixed crash `Accessing LegacyRandomSource from multiple threads` (reported by @Luigi delle Bicocche, @davey) | ||
- fixed compatibility crash `java.lang.IndexOutOfBoundsException` (reported by @GermanArtur, @memphismc) | ||
- fixed long game loading time when GitHub cannot be accessed without proxy (reported by @SettingDust) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
forge/src/main/java/com/majruszlibrary/events/OnItemFishedForge.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package com.majruszlibrary.events; | ||
|
||
import com.majruszlibrary.events.base.Events; | ||
import net.minecraft.world.entity.player.Player; | ||
import net.minecraftforge.event.entity.player.ItemFishedEvent; | ||
import net.minecraftforge.eventbus.api.SubscribeEvent; | ||
import net.minecraftforge.fml.common.Mod; | ||
|
||
@Mod.EventBusSubscriber | ||
public class OnItemFishedForge { | ||
@SubscribeEvent | ||
public static void onItemFished( ItemFishedEvent event ) { | ||
Player player = event.getEntity(); | ||
|
||
Events.dispatch( new OnItemFished( player, event.getHookEntity(), player.getItemInHand( player.getUsedItemHand() ), event.getDrops() ) ); | ||
} | ||
} |
35 changes: 0 additions & 35 deletions
35
forge/src/main/java/com/majruszlibrary/mixin/forge/MixinFishingHook.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,6 @@ | |
], | ||
"mixins": [ | ||
"MixinEnchantment", | ||
"MixinFishingHook", | ||
"MixinLootTable" | ||
], | ||
"injectors": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters