Skip to content

Commit

Permalink
Fixed accidental use of akka.japi.Predicate instead `java.util.func…
Browse files Browse the repository at this point in the history
…tion.Predicate`
  • Loading branch information
Desoroxxx committed Nov 25, 2024
1 parent 4e8b309 commit fa4c34a
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com),
and this project follows the [Ragnarök Versioning Convention](https://github.com/Red-Studio-Ragnarok/Commons/blob/main/Ragnar%C3%B6k%20Versioning%20Convention.md).

## [UNRELEASED] Modern Warfare Cubed Version 0.1.9 Changelog

### Warning

[**MWC 0.1 NOW REQUIRES RED CORE 0.5.1 AND ABOVE**](https://www.curseforge.com/minecraft/mc-mods/red-core/files/all)

[**MWC 0.1 NOW REQUIRES MIXINBOOTER**](https://www.curseforge.com/minecraft/mc-mods/mixin-booter/files/all)

**BEFORE UPDATING TO MWC 0.1 MAKE SURE TO BACKUP YOUR WORLDS, THINGS WILL DISAPPEAR**

### Fixed

- Fixed accidental use of `akka.japi.Predicate` instead `java.util.function.Predicate`

## Modern Warfare Cubed Version 0.1.8 Changelog - 2024-08-16

### Warning
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/com/paneedah/weaponlib/HighIQSpawnEgg.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.paneedah.weaponlib;

import akka.japi.Predicate;
import com.paneedah.weaponlib.compatibility.ModelRegistryServerInterchange;
import com.paneedah.weaponlib.crafting.CraftingEntry;
import com.paneedah.weaponlib.crafting.CraftingGroup;
Expand All @@ -23,6 +22,8 @@
import net.minecraft.world.chunk.storage.AnvilChunkLoader;
import net.minecraftforge.fml.common.registry.ForgeRegistries;

import java.util.function.Predicate;

import static com.paneedah.mwc.utils.ModReference.ID;

public class HighIQSpawnEgg extends Item implements IModernCraftingRecipe {
Expand Down

0 comments on commit fa4c34a

Please sign in to comment.