-
-
Notifications
You must be signed in to change notification settings - Fork 243
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: 秋雨落 <i@rain.cx>
- Loading branch information
Showing
24 changed files
with
277 additions
and
272 deletions.
There are no files selected for viewing
24 changes: 24 additions & 0 deletions
24
...ommon/src/main/java/io/izzel/arclight/common/bridge/core/world/item/BucketItemBridge.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,24 @@ | ||
package io.izzel.arclight.common.bridge.core.world.item; | ||
|
||
import net.minecraft.core.BlockPos; | ||
import net.minecraft.core.Direction; | ||
import net.minecraft.world.InteractionHand; | ||
import net.minecraft.world.item.ItemStack; | ||
import org.jetbrains.annotations.Nullable; | ||
|
||
public interface BucketItemBridge { | ||
@Nullable Direction arclight$getDirection(); | ||
void arclight$setDirection(@Nullable Direction value); | ||
|
||
@Nullable BlockPos arclight$getClick(); | ||
void arclight$setClick(@Nullable BlockPos value); | ||
|
||
@Nullable InteractionHand arclight$getHand(); | ||
void arclight$setHand(@Nullable InteractionHand value); | ||
|
||
@Nullable ItemStack arclight$getStack(); | ||
void arclight$setStack(@Nullable ItemStack value); | ||
|
||
@Nullable org.bukkit.inventory.ItemStack arclight$getCaptureItem(); | ||
void arclight$setCaptureItem(@Nullable org.bukkit.inventory.ItemStack value); | ||
} |
30 changes: 0 additions & 30 deletions
30
...n/src/main/java/io/izzel/arclight/common/mixin/core/world/entity/EntityMixin_Vanilla.java
This file was deleted.
Oops, something went wrong.
9 changes: 0 additions & 9 deletions
9
.../main/java/io/izzel/arclight/common/mixin/core/world/entity/projectile/FireballMixin.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
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
59 changes: 0 additions & 59 deletions
59
.../src/main/java/io/izzel/arclight/common/mixin/core/world/item/ItemStackMixin_Vanilla.java
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
...mon/src/main/java/io/izzel/arclight/common/mixin/core/world/level/LevelMixin_Vanilla.java
This file was deleted.
Oops, something went wrong.
5 changes: 1 addition & 4 deletions
5
.../effect/PoisonMobEffectMixin_Vanilla.java → .../effect/PoisonMobEffectMixin_Vanilla.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
Oops, something went wrong.