generated from neoforged/MDK
-
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
1 parent
ed91646
commit f667af9
Showing
6 changed files
with
47 additions
and
27 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
13 changes: 13 additions & 0 deletions
13
src/main/java/com/leclowndu93150/flightutils/items/AngelRingCurioItem.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,13 @@ | ||
package com.leclowndu93150.flightutils.items; | ||
|
||
import net.minecraft.world.item.ItemStack; | ||
import top.theillusivec4.curios.api.SlotContext; | ||
import top.theillusivec4.curios.api.type.capability.ICurioItem; | ||
|
||
public class AngelRingCurioItem implements ICurioItem { | ||
@Override | ||
public void curioTick(SlotContext slotContext, ItemStack stack) { | ||
ICurioItem.super.curioTick(slotContext, stack); | ||
System.out.println("Test"); | ||
} | ||
} |
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
2 changes: 1 addition & 1 deletion
2
...es/data/curios/tags/items/angel_ring.json → ...esources/data/curios/tags/items/ring.json
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 @@ | ||
{ | ||
"replace": "false", | ||
"replace": true, | ||
"values": [ | ||
"flightutils:angel_ring" | ||
] | ||
|
5 changes: 0 additions & 5 deletions
5
src/main/resources/data/flightutils/curios/slots/angel_ring.json
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"pack": { | ||
"description": "Resources for Flight utils", | ||
"pack_format": 10 | ||
} | ||
} |